微信小程序请求出现 400 问题的解决方法全攻略

why 8 2024-09-25

微信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);

      }

    });

编译错误

以下是编译后出现的错误

image.png

解决问题

我在request里的header修改一下如下:

1

2

3

4

header: {        //'content-type': 'application/json' // 默认值

       //这里修改json为text   json的话请求时会返回400(bad request)

       'content-type': 'application/texts'

     },

修改后调试如下

image.png



版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:EgretWing 链接微信开发工具调试问题详细剖析
下一篇:微信小程序 video 组件播放视频功能示例详解
相关文章

 发表评论

暂时没有评论,来抢沙发吧~