小程序
小游戏
企业微信
微信支付
扫描小程序码分享
请求服务端接口时,发送的参数只能使用raw的方式,才能请求成功,不知道微信小程序wx.request发送参数怎么使用raw的方式
5 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
raw的话采取这种格式:
var method = 'POST'; var header = "application/json";
form采取这种格式:
var method = 'POST'; var header = "application/x-www-form-urlencoded";
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
大哥,你解决这个问题了吗?
wx.request({ url: "url", data:{ value:value }, method: 'POST', header: { 'content-type':'application/x-www-form-urlencoded', //'Content-Type':'application/json', "X-AjaxPro-Method":"ShowList" //添加了该参数以后 请求就会被认定为raw格式数据 }, success: function (res) { console.log(res); }, fail: function (res) { console.log(res); } });
请问如何解决的
...你先查查raw是什么意思 再看看边上的选项。。
就是没有加工过的数据,但是和边上的选项没关系啊
http://tool.oschina.net/commons
设置Content-Type为text/plain
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
raw的话采取这种格式:
form采取这种格式:
var method = 'POST'; var header = "application/x-www-form-urlencoded";
大哥,你解决这个问题了吗?
wx.request({ url: "url", data:{ value:value }, method: 'POST', header: { 'content-type':'application/x-www-form-urlencoded', //'Content-Type':'application/json', "X-AjaxPro-Method":"ShowList" //添加了该参数以后 请求就会被认定为raw格式数据 }, success: function (res) { console.log(res); }, fail: function (res) { console.log(res); } });
请问如何解决的
...你先查查raw是什么意思 再看看边上的选项。。
就是没有加工过的数据,但是和边上的选项没关系啊
http://tool.oschina.net/commons
设置Content-Type为text/plain