解决报错Cannot read property 'forceUpdate' of undefined
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决报错Cannot read property 'forceUpdate' of undefined相关的知识,希望对你有一定的参考价值。
参考技术A 使用HBuilderX开发的项目,在微信开发者工具上运行报错Cannot read property 'forceUpdate' of undefined,如图(1-1)所示解决方案如图(1-2)所示:
在项目目录中找到manifest.json-微信小程序配置-配置"微信小程序AppID"
如果继续报这个错误,配置好后重启HbuildX和微信开发者工具,重新运行项目。
微信小程序报错解决方法TypeError: Cannot read property ‘setData‘ of undefined
场景
自己在调用 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
。
分析总结
- 如果函数作为对象的方法调用,
this
指向的是这个上级对象,即调用方法的对象。 - 如果是构造函数中的
this
,则this
指向新创建的对象本身。
以上是关于解决报错Cannot read property 'forceUpdate' of undefined的主要内容,如果未能解决你的问题,请参考以下文章
TypeError: Cannot read properties of undefined (reading ‘NAME‘)报错解决
Cannot read property 'defaultView' of undefined 报错解决
解决vue中报错 TypeError: Cannot read properties of undefined (reading ‘value‘)“
使用UEditor 报错Cannot read property 'nodeType' of undefined 解决办法
解决vue3中使用echart echart报错:Cannot read properties of undefined (reading ‘type‘)
解决vue3中使用echart echart报错:Cannot read properties of undefined (reading ‘type‘)