1.下载插件
npm install axios --save
2.在main.js下引用axios
import axios from ‘axios‘
Vue.prototype.$http=axios
3.在static文件夹下写静态文件 home.json
{ "name":"xuexue", "age":20}
4.在组件中请求数据
this.$http.get(‘../../static/home.json‘).then(function(res){ console.log(res)}.catch(err=>{console.log(err)}))
原文地址:https://www.cnblogs.com/zeng91/p/9775716.html
时间: 2024-11-06 07:48:56