自己在调用 wx.getSystemInfo({})
时,开发工具自动补全了代码。在 success
回调中按照以往的写法调用 this.setData({ });
时,报错:TypeError: Cannot read property 'setData' of undefined
。
相关代码如下:
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
wx.getSystemInfo({
success: function (res) {
console.log(res);
this.setData({
system_info: res.brand,
});
},
fail: function (res) {
this.myShowError("获取手机系统信息")
},
complete: function (res) { },
})
},
仔细对比和之前绑定事件调用 this.setData({ });
,调用方式并没有什么差别。查阅资料发现要改成 success: (res) => {};
这种写法,而不是 success: function (res) {};
,就可以正常使用了。
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
wx.getSystemInfo({
success: (res) => {
console.log(res);
this.setData({
system_info: res.brand,
});
},
fail: function (res) {
this.myShowError("获取手机系统信息")
},
complete: function (res) { },
})
},
将下列代码:
success: function (res) {
this.setData({})
}
改成以下代码:
success: (res) => {
this.setData({})
}
原因:两种写法 this
指向不同;
将下列两种情况分别运行一遍:
success: (res) => {
console.log("(res) => { }时:" + this);
},
success: function (res){
console.log("function (res)时:" + this);
},
运行结果对比分析:
function (res)时:undefined
(res) => { }时:[object Object]
function (res)
写法时 ,this
是 undefined
未定义的。
(res) => { }
写法时 this
是 Object
。