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-10-10 16:45:27 发布
1557

被折叠的 条评论
为什么被折叠?



