lamda 中的 this 是undefined
Page({
data:{ xx : null },
sthfunc1 : () => {
this.setData({xx:1}) // lamda这里的this 是undefined
},
sthfunc2 : function() {
this.setData({xx:2}) // 这里的this 是有对象的。
}
})
有人遇到么?
Page({
data:{ xx : null },
sthfunc1 : () => {
this.setData({xx:1}) // lamda这里的this 是undefined
},
sthfunc2 : function() {
this.setData({xx:2}) // 这里的this 是有对象的。
}
})
有人遇到么?