本文主要是介绍【微信小程序】TypeError: Cannot read property 'setData' of undefined,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
解决方案 https://www.jianshu.com/p/4f7b33e3e1df
对比分析
success: (res) => {console.log("(res) => { }时:" + this);},--------------success: function (res){console.log("function (res)时:" + this);},
输出台结果
function (res)时:undefined(res) => { }时:[object Object]
1、如果函数作为对象的方法调用,this指向的是这个上级对象,即调用方法的对象。
2、如果是构造函数中的this,则this指向新创建的对象本身。
问题是解决了但是 还是不太懂。。。学习js基础先~~~
这篇关于【微信小程序】TypeError: Cannot read property 'setData' of undefined的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!