ホームページ >WeChat アプレット >ミニプログラム開発 >WeChatアプレットのリクエスト400の問題を解決する方法
对于header['content-type'] 为application/json 的数据,会对数据进行json序列化 对于header['content-type'] 为 application/x-www-form-urlencoded 的数据,会哦将数据转换成query string (encodeURIComponent(k)=encodeURIComponent(v)&encodeURIComponent(k)=encodeURIComponent(v)...)
以下は私のWeChatアプレットのリストコードです
//请求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); } });
以下はコンパイル後のエラーです
リクエストのヘッダーを次のように変更しました:
header: { //'content-type': 'application/json' // 默认值 //这里修改json为text json的话请求时会返回400(bad request) 'content-type': 'application/texts' },
変更後のデバッグは次のようになります
以上がWeChatアプレットのリクエスト400の問題を解決する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。