小程序
小游戏
企业微信
微信支付
扫描小程序码分享
安卓6.5.3和开发者工具beta版 更新后的转换后的格式:
暂时解决办法:
promise的.then(that.otherFunction);
改为.then(function(){that.otherFunction();});
还请指正。官方是否会修复?
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
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 () {
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);
},