getWeatherDetail() {
var that = this
wx.request({
url: 'https://v0.yiketianqi.com/api?unescape=1&version=v61&appid=59443279&appsecret=DXbXCB1x',
data: {
currentPage: 1,
pageSize: 10,
},
method: 'POST',
header: {
'content-type': 'application/json',
'Authorization': that.data.Authorization,
},
success: function (res) {
console.log(JSON.stringify(res));
that.setData({
weather: res.data
})
console.log(JSON.stringify(that.data.weather));
console.log('weather ' + JSON.stringify(that.data.weather));
},
})
},
微信小程序获取天气接口
最新推荐文章于 2025-06-18 14:33:41 发布