@m-fe/weapp-axios
v0.0.7
Published
@m-fe/weapp-axios
Downloads
4
Readme
@m-fe/weapp-axios
特征
- 提供和 axios 相似体验,支持默认参数配置,拦截功能,和 create 创建新的对象
- 默认将小程序的 api 封装成 Promise,通过降级,兼容低版本手机系统
使用方法
npm i @m-fe/weapp-axios -S
import Abi from '@m-fe/weapp-axios';
let api = Abi();
传递相关配置来创建请求(以下参数为默认)
// 详情可参考 wx.request
let api = Abi({
url: '', //默认的接口后缀
method: 'get', //默认的HTTP 请求方法
dataType: 'json', //默认的返回类型
responseType: 'text',
header: {
'content-type': 'application/json',
},
});
除上面的创造方法外,我们还可以用实例上的 create 的方法创建新实例。
let api = Abi();
let newApi = api.create();
请求操作
/**
*默认是get
*如果你设置了默认的url。会自动配置 默认url + url
*如果你的url是http://或者https://开头,那么不会添加默认url
*/
//多种请求方式
api(url, data)
api(SERVER[api], apiData)
api.get(SERVER[api], apiData)
api(SERVER.URL + SERVER[api], apiData)
api(`${SERVER[api]}?page=${apiData.page}&count=${apiData.count}`)
api({
url: SERVER[api],
data: apiData,
<!--method: 'get',-->
<!--dataType: 'json',-->
<!--responseType: 'text',-->
<!--header: {-->
<!-- content-type': "application/json"-->
<!--}-->
})
api.post(url, data)
支持
'get',
'post',
'put',
'delete',
'options',
'head',
'trace',
'connect'
可以架起请求、响应、成功、失败的拦截
api.interceptors.response.use(
function(config) {
//接口||wx.接口
return config.data || config;
},
function(error) {
return error;
},
);
api.interceptors.request.use(
function(config) {
// 返回的是和wx.request相关的参数
wx.showLoading({
title: '加载内容',
});
},
function(error) {
return error;
},
);
wx 全 Promise
api.wx
.chooseImage()
.then(res => api.wx.uploadFile())
.then();
当然,如果你并不需要这个功能,你也可以在创建的时候设置第二个参数为 false