微信小程序request请求POST提交数据,记得要加上header
Posted PHP急先锋
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序request请求POST提交数据,记得要加上header相关的知识,希望对你有一定的参考价值。
wx.request({ url: ‘*******‘, data: { "type":"nearest_village", "district": that.data.district, }, header: { "Content-Type": "application/x-www-form-urlencoded" }, method: ‘POST‘, success: function(res) { //do somethind } })
一定要带上header,否则数据提交为空。
以上是关于微信小程序request请求POST提交数据,记得要加上header的主要内容,如果未能解决你的问题,请参考以下文章