重庆小潘seo博客

当前位置:首页 > 重庆网络营销 > 小潘杂谈 >

小潘杂谈

如何解决微信小程序出现请求400的问题

时间:2020-09-05 10:30:07 作者:重庆seo小潘 来源:
微信API对于header[content-type] 为application/json 的数据,会对数据进行json序列化对于header[content-type] 为 application/x-www-form-urlencoded 的数据,会哦将数据转换成query string (encodeURIComponent(k)=encodeURIComponent(v)encodeURICompo

微信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)...)示列代码以下是我微信小程序中的示列代码//请求URLwx.request({url:"https://api.douban.com/v2/movie/top250",data:{},header: {'content-type': 'application/json' // 默认值},success:function(res){wx.hideToast();console.log(res.data);}});编译错误以下是编译后出现的错误 如何解决微信小程序出现请求400的问题解决问题我在request里的header修改一下如下: header: {//'content-type': 'application/json' // 默认值//这里修改json为textjson的话请求时会返回400(bad request)'content-type': 'application/texts'},修改后调试如下 如何解决微信小程序出现请求400的问题以上就是如何解决微信小程序出现请求400的问题的详细内容,更多请关注小潘博客其它相关文章!