vue 项目搭建
2019-11-01 本文已影响0人
zy_Judy
安装node
安装 vue-cli
启动
在vue中使用axios请求json数据
第一步:安装axios
npm install axios --save // 使用axios发送请求
main.js文件中:
import axios from 'axios'; // 消息请求
Vue.prototype.$http = axios; // 将axios挂载到Vue实例中的$http 上面
第二步:安装vue文件请求
this.$http.get('./api/home').then((res) => {
this.content = res.data;
console.log(this.content);
}).catch((err) => {
console.log(err);
});