关于 JavaScript 函数的思考

2022/8/31 14:55:17

本文主要是介绍关于 JavaScript 函数的思考,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

函数可以将一堆重复的代码整合成一个整体,在需要改变的地方通过参数传值来改变。

比如,根据类型查询数据,接口返回的数据一样,后续处理这个数据的逻辑也是一样的,只有类型和输入的值不一样,就可以搞一个函数:

function findUserInfo(urlPath, methodName) {
  service({
    url: urlPath + "/" + this.content,
    method: methodName
  }).then(res => {
    this.returndata = res.data;
    this.htmlJson = this.formatJson(JSON.stringify(res.data, null, 2));
  }).catch(err => {
  });
}

function query() {
  if ( this.radio === "imsi" ) {
    this.findUserInfo("/biz/userInfo/getUserInfoByImsi", "get");
  } else if ( this.radio === 'phone' ) {
    this.findUserInfo("/biz/userInfo/getUserInfoByAccNum", "get");
  }
}

上面是通过函数简化之后的代码,下面是重复写的代码:

function query() {
  if ( this.radio === "imsi" ) {
    service({
      url: "/biz/userInfo/getUserInfoByImsi" + "/" + this.content,
      method: "get"
    }).then(res => {
      this.returndata = res.data;
      this.htmlJson = this.formatJson(JSON.stringify(res.data, null, 2));
    }).catch(err => {
    });
  } else if ( this.radio === "phone" ) {
    service({
      url: "/biz/userInfo/getUserInfoByAccNum" + "/" + this.content,
      method: "post"
    }).then(res => {
      this.returndata = res.data;
      this.htmlJson = this.formatJson(JSON.stringify(res.data, null, 2));
    }).catch(err => {
    });
  }
}

总结:先放在这里,后续自己改。



这篇关于关于 JavaScript 函数的思考的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程