微信API
- 复制代码1
2对于header['content-type'] 为application/json 的数据,会对数据进行json序列化 对于header['content-type'] 为 application/x-www-form-urlencoded 的数据,会哦将数据转换成query string (encodeURIComponent(k)=encodeURIComponent(v)&encodeURIComponent(k)=encodeURIComponent(v)...)登录后复制
示列代码
以下是我微信小程序中的示列代码
复制代码1
2
3
4
5
6
7
8
9
//请求URL
wx.request({
url:"https://api.douban.com/v2/movie/top250", data:{}, header: { 'content-type': 'application/json' // 默认值
},
success:function(res){
wx.hideToast();
console.log(res.data);
}
});
登录后复制
编译错误
以下是编译后出现的错误

解决问题
我在request里的header修改一下如下:
复制代码1
2
3
4
header: { //'content-type': 'application/json' // 默认值
//这里修改json为text json的话请求时会返回400(bad request)
'content-type': 'application/texts'
},
登录后复制
修改后调试如下

以上就是如何解决微信小程序出现请求400的问题的详细内容,更多请关注靠谱客其它相关文章!
最后
以上就是天真宝贝最近收集整理的关于如何解决微信小程序出现请求400的问题的全部内容,更多相关如何解决微信小程序出现请求400内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复