如何使用进度条上传大文件?

时间:2012-10-22 09:17:43

标签: node.js upload express progress-bar

目前我正在使用socket.io上传带有进度条的视频。这是教程

  

http://net.tutsplus.com/tutorials/javascript-ajax/how-to-create-a-resumable-video-uploade-in-node-js/

但Internet Explorer不支持此方法,但我确实需要在所有浏览器中上传视频。

我检查了快递文件。由于express是基于node-formidable(有一个进度事件),我认为有办法建立一个带进度条的上传系统,对吗?我只是不知道怎么做!

是否启用了node-formidable IE?

任何方式都可以使用进度条在纯espress.js中构建文件上传系统吗?

2 个答案:

答案 0 :(得分:1)

可以使用xhr.upload进度事件完成。它受html5支持。

例如: https://github.com/zeMirco/express-upload-progress

在php中,上传信息可以附加到会话中,因此它可以与html4一起使用,也许还有一个nodejs扩展名,我会谷歌它。

根据这个: How to do upload with express in node.js 在文件上传中有一个进度事件,因此您可以在会话中使用实际进度数据设置变量,并使用客户端的ajax读取它。

答案 1 :(得分:1)

以下是jsfiddle使用角度js和ng-file-upload指令。

jsfiddle适用于图像和文件,但要上传视频,您需要将POST网址更改为服务器。

//inject angular file upload directives and services.
var app = angular.module('fileUpload', ['ngFileUpload']);

app.controller('MyCtrl', ['$scope', 'Upload', '$timeout', function($scope, Upload, $timeout) {
  $scope.uploadFiles = function(file, errFiles) {
    $scope.f = file;
    $scope.errFile = errFiles && errFiles[0];
    if (file) {
      file.upload = Upload.upload({
        url: 'https://angular-file-upload-cors-srv.appspot.com/upload',
        data: {
          file: file
        }
      });

      file.upload.then(function(response) {
        $timeout(function() {
          file.result = response.data;
        });
      }, function(response) {
        if (response.status > 0)
          $scope.errorMsg = response.status + ': ' + response.data;
      }, function(evt) {
        file.progress = Math.min(100, parseInt(100.0 *
          evt.loaded / evt.total));
      });
    }
  }
}]);
.thumb {
  width: 24px;
  height: 24px;
  float: none;
  position: relative;
  top: 7px;
}

form .progress {
  line-height: 15px;
}

.progress {
  display: inline-block;
  width: 100px;
  border: 3px groove #CCC;
}

.progress div {
  font-size: smaller;
  background: orange;
  width: 0;
}
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<script src="https://angular-file-upload.appspot.com/js/ng-file-upload-shim.js"></script>
<script src="https://angular-file-upload.appspot.com/js/ng-file-upload.js"></script>


<body ng-app="fileUpload" ng-controller="MyCtrl">
  <h4>Upload on file select</h4>
  <button type="file" ngf-select="uploadFiles($file, $invalidFiles)"  ngf-max-height="1000" ngf-max-size="100MB">
    Select File</button>
  <br>
  <br> File:
  <div style="font:smaller">{{f.name}} {{errFile.name}} {{errFile.$error}} {{errFile.$errorParam}}
    <span class="progress" ng-show="f.progress >= 0">
          <div style="width:{{f.progress}}%"  
               ng-bind="f.progress + '%'"></div>
      </span>
  </div>
  {{errorMsg}}
</body>

相关问题