这篇文章主要介绍“Vue封装如何axios”,在日常操作中,相信很多人在Vue封装如何axios问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Vue封装如何axios”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
1、axios:是一个基于Promise的网络请求库。既可以在node.js(服务器端)使用,也可以在浏览器端使用
(1)在node.js中使用的原生的http模块
(2)在浏览器中使用的XMLHttpRequest
2、vue中的使用方法
(1)安装:npm install axios
(2)引用方法:
原生的方式(不推荐使用)
axios({ url:'http://127.0.0.1:9001/students/test', //远程服务器的url method:'get', //请求方式 }).then(res=>{ this.students = res.data }).catch(e=>{ console.error(e); }) //缺点:每个使用axios的组件都需要导入
注:axios对服务端数据的封装
res.config:响应信息的配置情况
res.data:响应的数据
res.headers:响应头信息(信息的大小、信息的类型)
res.request:请求对象
res.status:请求、响应的状态码
res.statusText:请求、响应状态码对应的文本信息
在项目的main.js文件中导入axios,将其写入Vue的原型中(推荐使用)
import axios from "axios"; Vue.prototype.$http = axios
在组件中通过this.$http的方式使用
this.$http.get('http://127.0.0.1:9001/students/test').then(res=>{ this.students = res.data }).catch(e=>{ console.log(e) })
缺点:只能在vue2使用,vue3中不能用
将axios单独封装到某个配置文件中(在配置文件中单独封装axios实例)
(1)配置文件:axiosApi.js
import axios from "axios"; const axiosApi = axios.create({ baseURL:'http://127.0.0.1:9001', //基础地址 timeout:2000 //连接超时的时间(单位:毫秒) }) export default axiosApi //axiosApi是axios的实例
(2)使用:
import $http from '../config/axiosapi' $http.get('/students/test').then(res=>{ this.students = res.data.info }).catch(e=>{ console.log(e) })
优点:既可以在vue2中使用,也可以在vue3中使用
3、axios的不同请求方式向服务器提交数据的格式:
(1)get请求:服务器端通过req.quert参数名来接收
直接将请求参数绑定在url地址上
let str = '张三' $http.get('/students/test/?username='+str).then(res=>{ this.students = res.data.info }).catch(e=>{ console.log(e) })
通过params方式进行提交
let str = '张三' $http.get('/students/test',{ params:{ username:str } }).then(res=>{ this.students = res.data.info }).catch(e=>{ console.log(e) })
(2)post方式请求:服务器端通过req.body.参数名获取数据
let str = '张三' $http.post('/students/test',{ username:str }).then(res=>{ this.students = res.data.info }).catch(e=>{ console.log(e) })
(3)put方式请求:和post方式一样
(4)delete方式请求:和get方式一样
到此,关于“Vue封装如何axios”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注亿速云网站,小编会继续努力为大家带来更多实用的文章!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。