vue ---通过API接口获取数据
2021-03-02 06:27
标签:OLE conf ret author -- api接口 inter int 路径 1. 配置axios ``` 2. 配置根路径 ``` ``` 3. 获取数据 ``` vue ---通过API接口获取数据 标签:OLE conf ret author -- api接口 inter int 路径 原文地址:https://www.cnblogs.com/Qiucccc/p/13057527.htmlimport axios from ‘axios‘`
```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
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接口获取数据
文章链接:http://soscw.com/index.php/essay/58912.html