欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

使用axios

程序员文章站 2022-07-02 21:21:00
...

1.安装axios

npm i axios

2.main.js

import axios from 'axios'

然后

Vue.prototype.$http = axios

3.在需要发送请求的组件中,使用

methods:{
函数名(){
 this.$http.post('login',this.formdata)
 .then((res)=>{
  const {status,data:{data,meta:{msg}}} = res
  if(status === 200){
 //登陆成功,渲染home界面
 this.$router.push({
  name:'home'
})
   this.$message.success(msg);
}else{
   this.$message.warning(msg);
}
})
}

}

在main.js中配置baseurl

axios.defauit.baseURL = '接口文档给的'