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);
});
},