Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hengshanmwc/wx-axios-promise
小程序的request库,封装了wx的所有api为Promise,用法和axios类似
https://github.com/hengshanmwc/wx-axios-promise
axios http request wechat
Last synced: 3 days ago
JSON representation
小程序的request库,封装了wx的所有api为Promise,用法和axios类似
- Host: GitHub
- URL: https://github.com/hengshanmwc/wx-axios-promise
- Owner: hengshanMWC
- Created: 2019-02-26T14:32:48.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-09-27T06:02:57.000Z (3 months ago)
- Last Synced: 2024-12-19T00:08:16.863Z (10 days ago)
- Topics: axios, http, request, wechat
- Language: JavaScript
- Homepage:
- Size: 30.3 KB
- Stars: 45
- Watchers: 1
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## wx-axios-promise
### 特征
* 提供和axios相似体验,支持默认参数配置,拦截功能,和create创建新的对象
* 默认将小程序的api封装成Promise,通过降级,兼容低版本手机系统
### 使用方法
npm i wx-axios-promise -S[小程序 npm 支持](https://developers.weixin.qq.com/miniprogram/dev/devtools/npm.html?search-key=npm)
[小程序代码片段测试](https://developers.weixin.qq.com/s/GSiAP0mj787V)
```
import Abi from 'wx-axios-promise'
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,
})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相关的参数
console.log(config)
wx.showLoading({
title: '加载内容'
})
}, function(error){
return error
})
```
wx全Promise
```
api.wx.chooseImage()
.then( res => api.wx.uploadFile())
.then()
```
当然,如果你并不需要这个功能,你也可以在创建的时候设置第二个参数为false