#小程序云开发挑战赛#-7日天气-Meiōsei
发布于 4 年前 作者 chao57 1887 次浏览 来自 分享
应用场景:

当用户需要了解当前所在地天气情况时,就可以通过7日天气小程序查询天气情况。

目标用户:

出差人士。

效果截图:

功能代码展示:

  onLoadfunction () {
    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'
      },
      successfunction (res{
        _this.setData({
          weatherweek: res.data
        });
        console.log(_this.data.weatherweek)
      }
    });

3 回复

多谢大家!

回到顶部