vue之axios请求数据本地json


1.下载插件

 npm install axios --save
2.下载vue-axios

npm install --save axios vue-axios
3.在main.js下引用axios

import Vue from 'vue'
import axios from 'axios'
import VueAxios from 'vue-axios'
Vue.use(VueAxios, axios)
Vue.$http=axios //不加时 请求为 this.axios.get()
4.在static文件夹下写静态文件 home.json

{
"fuid": 1,
"account":"12322343243",
"phone": "13200000000",
"displayName": "代收款",
"companyName": "代收款科技公司",
"accountType":[
{"id":1,"name":"经销商","value":1},
{"id":2,"name":"客服","value":2}
],
"remark": "帐号的备注信息"
}
5.在组件中请求数据

this.$http.get('../../static/home.json')
.then(function(res){
console.log(res)
}
.catch(err=>{console.log(err)})
)
 
---------------------


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM