猿问

微信小程序wx.request的header疑问

我自己测试微信小程序的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);

  }

})

https://img3.mukewang.com/5c6b673b0001b20604680148.jpg


这两种写法到底有什么不同?为什么会导致这种问题产生?

'Content-Type': 'json'

'Content-Type': 'application/json'


ibeautiful
浏览 2571回答 1
1回答

呼如林

这里有同样问题的。链接描述
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答