为什么我的api调用成功,但是数据是空的
- 需求的场景描述(希望解决的问题)
- 希望提供的能力
wx.request({
url: ‘http://apis.juhe.cn/geo/’,
data: {
key: “**************************”, //key为正确的值
lng:longitude,
lat:latitude,
type:1
},
header: {},
method: ‘GET’,
dataType: ‘json’,
responseType: ‘text’,
success: function (res) {
console.log(res)
},
为什么我请求到的数据是空的?