关于微信小程序http请求400错误
2018-01-03 本文已影响0人
彬彬彬boboc
wx.request({
url: 'https://api.douban.com/v2/movie/in_theaters',
header: {
'content-type':'application/json'
},
success: function (res) {
console.log(res)
}
})
以上代码运行后会出现400的错误;
后来进过搜寻资料是因为微信开发工具升级后请求头header发生了改变,而微信开发文档中还没有发生改变。
解决办法是将上面的网络请求代码中header部分代码修改下:
header: {
"Content-Type": "json"
},