vue实现天气查询
Posted spare-ribs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue实现天气查询相关的知识,希望对你有一定的参考价值。
效果如下:
支持回车查询和点击查询,使用axios调用http://wthrcdn.etouch.cn/weather_mini接口
js代码如下
var app = new Vue({ el:"#app", data:{ city:‘‘, weatherList:[] }, methods: { searchWeather:function(){ var that = this; axios.get(‘http://wthrcdn.etouch.cn/weather_mini?city=‘+this.city) .then(function(response){ console.log(response.data.data.forecast); that.weatherList = response.data.data.forecast }) .catch(function(err){}) } }, })
以上是关于vue实现天气查询的主要内容,如果未能解决你的问题,请参考以下文章