效果如下:

支持回車查詢和點擊查詢,使用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){}) } }, })
