Page({
data: {
inputValue: ''
},
bindKeyInput: function (e) {
this.setData({
inputValue: e.detail.value //用this.dada.inputValue=e.detail.value改变不了data的值
})
},
})
Page({
data: {
inputValue: ''
},
bindKeyInput: function (e) {
this.setData({
inputValue: e.detail.value //用this.dada.inputValue=e.detail.value改变不了data的值
})
},
})