1.0.1 • Published 3 years ago

xt-uni-upload v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

信通 UNI 分片上传

  • 描述:uniapp 分片上传

安装

npm install xt-uni-upload --save

使用

  • 示例如下
import { uploadByPieces } from 'xt-uni-upload';
uploadByPieces({
  url: '',     //上传地址
  orgid: '',   // orgid
  token: '',   // 上传token
  file: '',    // 视频或图片实体
  pieceSize: 5, // 分片大小 单位M
  success: data => {

  },
  error: e => {

  }
});

参数

参数类型是否必填备注
urlstring请求地址 默认:https://app.litenews.cn/cq-app-upload/upload/attach/file
orgidstring请求方式,默认:29
tokenstring上传token
filestring上传文件实体 file
pieceSizenumber切片大小 默认:5M