码迷,mamicode.com
首页 > 其他好文 > 详细

vue实现天气查询

时间:2020-04-04 14:41:24      阅读:379      评论:0      收藏:0      [点我收藏+]

标签:img   err   closed   search   for   hide   pen   ons   The   

效果如下:

技术图片

 

 支持回车查询和点击查询,使用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){})
        }
    },
})
View Code

 

vue实现天气查询

标签:img   err   closed   search   for   hide   pen   ons   The   

原文地址:https://www.cnblogs.com/spare-ribs/p/12631428.html

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