method
是 get
方式的时候,header
为
{"Content-Type": 'application/json'}
,
method
为 post
时,header
为
{"Content-Type": "application/x-www-form-urlencoded"}
wx:request文章来源:https://www.toymoban.com/news/detail-705209.html
wx.request({
url: 'http://...www/runxiang_yiyao/Mobile/Index/login',
method: 'post',
data: util.json2Form({
username: e.detail.value.username,
password: e.detail.value.password,
}),
header: {
"Content-Type": "application/x-www-form-urlencoded"
},
success: function (res) {
console.log(util.formatTime)
// console.log(res)
}
})
参考:微信小程序wx.request 使用 post方式传参文章来源地址https://www.toymoban.com/news/detail-705209.html
到了这里,关于微信小程序post请求数据传送不出去的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!