我自己测试微信小程序的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'
添加回答
举报
0/150
提交
取消