Heim > Artikel > WeChat-Applet > So lösen Sie das Problem der Anfrage 400 im WeChat-Applet
对于header['content-type'] 为application/json 的数据,会对数据进行json序列化 对于header['content-type'] 为 application/x-www-form-urlencoded 的数据,会哦将数据转换成query string (encodeURIComponent(k)=encodeURIComponent(v)&encodeURIComponent(k)=encodeURIComponent(v)...)
Das Folgende ist von mir Code im WeChat-Miniprogramm auflisten
//请求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); } });
Die folgenden Fehler treten nach der Kompilierung auf
Ich habe den Header in der Anfrage wie folgt geändert:
header: { //'content-type': 'application/json' // 默认值 //这里修改json为text json的话请求时会返回400(bad request) 'content-type': 'application/texts' },
Nach der Änderung läuft das Debuggen wie folgt ab
Das obige ist der detaillierte Inhalt vonSo lösen Sie das Problem der Anfrage 400 im WeChat-Applet. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!