码迷,mamicode.com
首页 > Windows程序 > 详细

vue ---通过API接口获取数据

时间:2020-06-06 23:24:48      阅读:355      评论:0      收藏:0      [点我收藏+]

标签:OLE   conf   ret   author   --   api接口   inter   int   路径   

1. 配置axios

```

import axios from axios`

 


```

2. 配置根路径

```

axios.defaults.baseURL = 【接口网址】
axios.interceptors.request.use(config => {
// console.log(config)
config.headers.Authorization = window.sessionStorage.getItem(token)
// 在最后必须 return config
return config
})
Vue.prototype.$http = axios

 

```

3. 获取数据

```

async 【函数名】() {
const { data: res } = await this.$http.get(menus)
//判断状态
if (res.meta.status !== 200) return this.$message.error(res.meta.msg)
this.menulist = res.data
console.log(res)
},

 


```

 

vue ---通过API接口获取数据

标签:OLE   conf   ret   author   --   api接口   inter   int   路径   

原文地址:https://www.cnblogs.com/Qiucccc/p/13057527.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!