时间:2019-04-30 来源:小程序工厂
clearSelect: function () { console.log(this);//这一步this已经undefined了
var _this = this;
_this.checkAll().call(_this);
},
clearBtn:function(){
var that = this;
xxxFunction(x).then(function(success){
console.log(success);
},function(errr){
console.log(err);
}).then(that.clearSelect);//如果这样调用,调用的函数会有this为undefined的情况。安卓6.5.3和开发者工具beta版出现这样的情况,其他都是好的。
}
我的解决方法:
clearSelect: function () {
var _this = this;
_this.checkAll().call(_this);
},