小程序
小游戏
企业微信
微信支付
扫描小程序码分享
大哥们 我想写个 输入框 然后获取输入框的内容 把这个值 给wx。request 中的 Data用 求大佬给个完整的代码 我太小白了 参数传递不过来
就是 这个 text 过不来
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
X和Y 为参数名(自定义),后面对应的就是参数值
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
<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) } }) }
getValue(e) {
let text = e.detail.value
this.setData({
text
})
},
`regionCode=00&keyword=${this.data.text}&pageNum=1&pageSize=8`
wx.request({ url: "https:", method: "get", data: { "参数A": a, "参数B": b }, header: { "Content-Type": "application/json" }, success: function(e){ }, fail: function(err){ } })
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
X和Y 为参数名(自定义),后面对应的就是参数值
<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) } }) }
getValue(e) {
let text = e.detail.value
this.setData({
text
})
},
`regionCode=00&keyword=${this.data.text}&pageNum=1&pageSize=8`
https://developers.weixin.qq.com/community/develop/article/doc/000ca6b0ee0ff858be0a5ba5956413
wx.request({ url: "https:", method: "get", data: { "参数A": a, "参数B": b }, header: { "Content-Type": "application/json" }, success: function(e){ }, fail: function(err){ } })