如图 我 console.log(this) 出来一直都是一个window
wxml部分
<input type=“text” password name=“password” placeholder=“输入原始密码” focus bindblur=“checkNull”/>
js 部分
checkNull: (e) => {
const that = this
e.detail.value && that.setData({
disabled: false
})
},
好神奇……
在 checkNull 方法里输出 this 一直都是一个 window
你好,请贴上相关代码