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

Posted ccjin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序获取国外今日天气预报信息接口相关的知识,希望对你有一定的参考价值。

使用天气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/

以上是关于微信小程序获取国外今日天气预报信息接口的主要内容,如果未能解决你的问题,请参考以下文章

怎样开发微信小程序获取用户个人信息

微信小程序如何实现根据实时天气弹出一个提示窗口

微信小程序用户信息获取接口的调整

微信小程序-获取用户信息和openid,session_key,

微信小程序获取用户信息接口

微信小程序如何开发,怎么获取openID和用户信息