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){})
        }
    },
})
View Code

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM