AngularJS 大文件上传:angularQFileUpload
angularQFileUpload 是一个 AngularJS 扩展,实现了通过七牛云储存上传大文件的服务,支持恢复、进度等功能。
示例代码:
$scope.selectFiles = []; var start = function (index) { $scope.selectFiles[index].progress = { p: 0 }; $scope.selectFiles[index].upload = $qupload.upload({ key: '<your qiniu file key>', file: $scope.selectFiles[index].file, token: '<your qiniu UpToken>' }); $scope.selectFiles[index].upload.then(function (response) { // upload success $log.info(response); }, function (response) { // upload failure $log.info(response); }, function (evt) { // progress $scope.selectFiles[index].progress.p = Math.floor(100 * evt.loaded / evt.totalSize); }); }; $scope.abort = function (index) { $scope.selectFiles[index].upload.abort(); $scope.selectFiles.splice(index, 1); }; $scope.onFileSelect = function ($files) { var offsetx = $scope.selectFiles.length; for (var i = 0; i < $files.length; i++) { $scope.selectFiles[i + offsetx] = { file: $files[i] }; start(i + offsetx); } };
本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
转载本站原创文章,请注明出处,并保留原始链接、图片水印。
本站是一个以用户分享为主的开源技术平台,欢迎各类分享!