本站由axios爱好者共建,部署在vultr vps上,推荐使用vultr!价格实惠,实力雄厚。 最近新注册用户充值$25,可额外获赠$50,搭建博客必备。 前往注册
udemy web开发课程,涵盖angular、vue和react,共17门,几十G课程网盘观看 前往领取
vue-axios-plugin
简体中文 | English
Vuejs 项目的 axios 插件
如何使用
通过 Script 标签
<!-- 在 vue.js 之后引入 --> |
npm 模块引入
首先通过 npm 安装
npm install --save vue-axios-plugin |
然后在入口文件配置如下:
import Vue from 'Vue' |
配置参数
除了 axios
提供的默认 请求配置, vue-axios-plugin
也提供了 request/response
拦截器配置,如下:
参数名 | 类型 | 默认值 | 描述 |
---|---|---|---|
reqHandleFunc |
{Function} |
config => config |
请求发起前的拦截处理函数 |
reqErrorFunc |
{Function} |
error => Promise.reject(error) |
处理请求错误的函数 |
resHandleFunc |
{Function} |
response => response |
响应数据处理函数 |
resErrorFunc |
{Function} |
error => Promise.reject(error) |
响应错误处理函数 |
示例
在 Vue 组件上添加了 $http
属性, 它默认提供 get
和 post
方法,使用如下:
this.$http.get(url, data, options).then((response) => { |
你也可以通过 this.$axios
来使用 axios
所有的 api 方法,如下:
this.$axios.get(url, data, options).then((response) => { |
TODO
- [ ] Unit test.
注意!!!
当你 header 设置为 application/x-www-form-urlencoded
时, 你需要使用 qs 来转换 post 数据, 如下:
import qs from 'qs' |
但是如果 post 数据对象属性值含有 object/array
,你就需要将这些属性值转化为 JSON
字符串,不然后端接受的的数据将无法解析,方法如下:
import qs from 'qs' |
更多使用方式, 参考 axios
License
MIT