An axios API like
Download
package for MiniProgram [alpha]小程序下载封装 [alpha]
API
methods:
-
download<T>(options: DownloadOption): Promise<T>
; download<T>(url: string, filePath?: string, options?: Exclude<DownloadOption, 'url' | 'filePath'>): Promise<T>
options
- [x] url 地址 required (只能请求时设置for single request)
- [x] filePath 保存地址 (只能请求时设置for single request)
- [x] cancelToken 取消 (只能请求时设置for single request)
- [x] onProgress 下载进度响应 (只能请求时设置for single request)
- [x] onHeaders 接收头响应 (只能请求时设置for single request)
- [x] responseType
- [x] headers
- [x] params
- [x] baseUri
- [x] headers
- [x] retry
- [x] transformSend
- [x] transformResponse
Global Listeners
- [x] On Send (before request data send & after request data transformed)
- [x] On Response (after request response data transformed)
- [x] On rejected (before
catch
of Promise) - [x] On abort
- [x] On complete
Usage
quick start
import {Download} from 'miniprogram-downloder';
Download.download('item/1.jpg')
.then(applyFunction) // 返回数据
.catch(err=>wx.showToast({title:'下载失败'}));
Download.download({url:'item/1.jpg'})
.then(applyFunction) // 返回数据
.catch(err=>wx.showToast({title:'下载失败'}));
直接返回保存位置
import {Download,transformDownloadResponseOkData} from 'miniprogram-downloder';
// 根据状态码,直接返回保存地址
//默认配置全局有效
Download.Defaults.transformResponse=transformDownloadResponseOkData;
//js
Download.download('item/1.jpg').then(console.log);//打印字符串,保存地址
//TS
Download.download<string>('item/1.jpg')
.then(path=>{
console.log(path)//path 为保存路径
})
//返回完整数据 对当前下载有效
Download.download(url:'item/1.jpg',null,{transformResponse:(res,o)=>res})
.then(console.log) //打印 返回的Object
CancelToken (abort)
可通过cancel token 方式取消请求
import { Download, CancelToken } from 'miniprogram-request';
// 创建一个 tokensource
const source = CancelToken.source();
Download.download('items','tempfile' , {
// 配置 cancelToken
cancelToken: source.token
});
// 需要取消操作时
source.cancel('cancel the download');