ts 使用 setData 编译报错
如标题
使用 this.setData({
a: 1
})
Page({
data: {
accountValue: ’ ’
},
onLoad () {
},
bindKeyInput (e: any) {
this.setData({
accountValue: e.detail.value
})
}
})
miniprogram/pages/login/login.ts:10:9 - error TS2722: Cannot invoke an object which is possibly ‘undefined’.
10 this.setData({
~~~~~~~~~~~~
Found 1 error.
请教一下
2 回复