欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

回调中使用this

程序员文章站 2022-07-14 18:06:03
...

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

** 一、 ** 虽然可以先创建一个当前所在域的常量来保证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)
  }
})

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