VUE获取当地天气情况
最近做一个后台,需要显示当地城市的天气情况,所以就想写这篇东西记录一下自己获取过程。获取天气接口地址:http://wthrcdn.etouch.cn/weather_mini?city=??接下来就演示一下吧://获取当地城市及天气async getTianQi(){var result = await axios.get('http://wthrcdn.etouch.cn/weather_mi
·
最近做一个后台,需要显示当地城市的天气情况,所以就想写这篇东西记录一下自己获取过程。
获取天气接口地址:http://wthrcdn.etouch.cn/weather_mini?city=??
接下来就演示一下吧:
//获取当地城市及天气
async getTianQi(){
var result = await axios.get('http://wthrcdn.etouch.cn/weather_mini?city='+this.city)
console.log(result.data.data.forecast)
this.City = result.data.data.forecast[0]
console.log(this.City)
}
打印输出情况:
result.data.data.forecast
包含今天及之后几天的天气情况:
但我需要的是当天天气情况,所以result.data.data.forecast[0]
获取完毕
更多推荐
已为社区贡献17条内容
所有评论(0)