美文网首页
回调中使用this

回调中使用this

作者: jhs1873 | 来源:发表于2018-09-27 14:33 被阅读0次

在小程序中的接口是异步回调

** 一、 ** 虽然可以先创建一个当前所在域的常量来保证this的作用域↓

const that = this;
wx.request({
  url: 'test.php',
  success: function(res) {
    console.log(that)
  }
})

** 二、** 不过使用es6的箭头函数也可保证this的作用域是正确的↓

wx.request({
  url: 'test.php',
  success:(res) => {
    console.log(this)
  }
})

两种都可以打印出当前环境

相关文章

网友评论

      本文标题:回调中使用this

      本文链接:https://www.haomeiwen.com/subject/rsyeoftx.html