应用场景: 当用户需要了解当前所在地天气情况时,就可以通过7日天气小程序查询天气情况。 目标用户: 出差人士。 效果截图:
功能代码展示:
onLoad: function () {
this.getapi();
},
getapi:function(){
var _this = this;
// 获取IP地址, 请更换为自己的appid和appsecret
wx.request({
url: 'https://tianqiapi.com/api?version=v1&appid=*******&appsecret=*******',
data: {
},
method: 'POST',
header: {
'content-type': 'application/x-www-form-urlencoded'
},
success: function (res) {
_this.setData({
weatherweek: res.data
});
console.log(_this.data.weatherweek)
}
});
不错