var self = this;
wx.request({
url: 'https://restapi.amap.com/v3/weather/weatherInfo',
data: {
'key': '7952f0543749fe21298320bc5c58ccdf', //填入自己申请到的Key
'city': '410300', //地区邮编
},
header: {
'content-type': 'application/json'
},
success: function (res) {
console.log(res.data);
}
})
版权声明:本文为Dusk_xiao原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。