slice-upload
v1.0.0
Published
``` npm install slice-upload ```
Downloads
2
Readme
安装
npm install slice-upload
配置
linkOptions 连接服务器信息,接口动态获取。
命令
1、import Uploader from 'slice-upload';
2、this.uploader = new Uploader();
3、this.uploader.addFile(file, linkOptions);
其他
this.uploader.on('start', (file) => {
console.log('start:', file);
});
this.uploader.on('end', (file) => {
console.log('end:', file);
});
this.uploader.on('percent', (file, p) => {
console.log('percent:', file, p);
});