page里怎样不定义that传递值或函数?
有一个需求,不能使用 var that = this;,怎样在别的组件里调用this Page({
data:{
title: '测试',
},
bindViewTap: function (e) {
//自定义
},
onLoad: function () {
//var that = this; 不能在showActionSheet之前定义that,如何在success里获取title或执行bindViewTap
wx.showActionSheet({
itemList: ['A', 'B', 'C'],
success(res){
//不能在showActionSheet之前定义that,如何在success里获取title或执行bindViewTap
},
fail(res){
}
})
}
})