码迷,mamicode.com
首页 > 微信 > 详细

微信小程序获取国外今日天气预报信息接口

时间:2019-04-26 21:07:03      阅读:285      评论:0      收藏:0      [点我收藏+]

标签:json   接口   OLE   tps   str   day   highlight   微信   .data   

使用天气API的国外今日天气预报接口制作

返回json预览

{
cityid: "601010100",
city: "堪培拉",
cityEn: "Canberra",
country: "澳大利亚",
countryEn: "Australia",
update_time: "2019-04-24 18:00:00",
wea: "晴",
wea_img: "qing",
tem: "22",
win: "西北风",
win_speed: "<3级"
}

小程序获取天气的JS

 // 天气api国外今日天气获取, 根据城市编号
  weathertoday:function(ip){
    var _this = this;
    wx.request({
      url: ‘https://www.tianqiapi.com/api/?version=v51&appid=1001&appsecret=1002&cityid=601010100‘,
      data: {
        ‘ip‘: ip
      },
      method: ‘GET‘,
      header: {
        ‘content-type‘: ‘application/x-www-form-urlencoded‘
      },
      success: function (res) {
        _this.setData({
          weather: res.data
        });
        console.log(_this.data.weather)
      }
    });
  },

  

有问题可以联系QQ  445899710  免费协助解决

天气API官网  https://www.tianqiapi.com/

微信小程序获取国外今日天气预报信息接口

标签:json   接口   OLE   tps   str   day   highlight   微信   .data   

原文地址:https://www.cnblogs.com/ccjin/p/10776323.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!