⼩程序之请求400(BadRequest )
API 对于header['content-type'] 为application/json 的数据,会对数据进⾏json序列化对于header['content-type'] 为 application/x-www-form-urlencoded 的数据,会哦将数据转换成
query string (encodeURIComponent(k)=encodeURIComponent(v)&encodeURIComponent(k)=encodeURIComponent(v)...)⽰列代码以下是我⼩程序中的⽰列代码
编译错误
以下是编译后出现的错误
解决问题
我在request⾥的header修改⼀下如下:
修改后调试如下
//请求URL
url:"api.douban/v2/movie/top250",
data:{},代码转换
header : {
'content-type': 'application/json' // 默认值
}, success:function(res){
wx.hideToast();
console.log (res.data);
}
});
header : {
//'content-type': 'application/json' // 默认值
//这⾥修改json 为text json 的话请求时会返回400(bad request)
'content-type': 'application/texts'
},
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论