获取输入框的内容 把这个值 给wx。request 中的 Data用 怎么写?
大哥们 我想写个 输入框 然后获取输入框的内容 把这个值 给wx。request 中的 Data用 求大佬给个完整的代码 我太小白了 参数传递不过来
就是 这个 text 过不来
4 回复
<input placeholder="请输入" bindinput="handleInput" />
data: {
inputVal: ''
},
handleInput(e) {
this.setData({
inputVal: e.detail.value
})
},
submitRequest() {
wx.request({
url: "https://api.xxx.com",
method: "POST",
data: {
inputVal: this.data.inputVal
},
header: {
"Content-Type": "application/json"
},
success: (res) => {
console.log(res)
}
})
}