vue 获取天气情况

vue 查询当地天气 输入城市名即可
1.npm下载axios,并在main.js入口函数中引入axios

import axios from "axios";
Vue.prototype.$axios = axios

页面

      this.$axios
        .get("http://wthrcdn.etouch.cn/weather_mini?city=城市")
        .then((response) => {
           console.log(response.data.data);

  
        })
        .catch(function (error) {
          console.log(error);
        });
    },

你可能感兴趣的:(vue.js,javascript,html)