我自己测试微信小程序的wx.request功能。
header设置 'Content-Type': 'json' 能获取到结果
wx.request({
url: 'https://api.douban.com/v2/movie/in_theaters',
method: 'GET',
header: {
'Content-Type': 'json' // 使用这个能正常获取数据
},
success: function(res) {
console.log(res);
}
})
header设置 'Content-Type': 'application/json' 不能获取结果
wx.request({
url: 'https://api.douban.com/v2/movie/in_theaters',
method: 'GET',
header: {
'Content-Type': 'application/json'// 使用这个不能获取数据
},
success: function(res) {
console.log(res);
}
})
这两种写法到底有什么不同?为什么会导致这种问题产生?
'Content-Type': 'json'
'Content-Type': 'application/json'
呼如林
相关分类