欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

AngularJS 文件上传控件 ng-file-upload详解

程序员文章站 2023-09-09 13:16:19
网上可以找到的 angularjs 的文件上传控件有两个: angular-file-upload: ng-file-upload: 这两个非常类似,连js文...

网上可以找到的 angularjs 的文件上传控件有两个:

angular-file-upload:

ng-file-upload:

这两个非常类似,连js文件的结构都是一样的。核心的js是.min.js,还都有一个-shim.min.js,用来支持上传进度条和上传暂停等高级功能。

按道理讲shim.js应该是可加可不加,但实测-shim.min.js必须包含,否则有js文件加载问题。但是angular-file-upload-shim.min.js这个文件在github上不存在!!!

所以用ng-file-upload!用ng-file-upload!用ng-file-upload!

angular-file-upload 是一款轻量级的 angularjs 文件上传工具,为不支持浏览器的 fileapi polyfill 设计,使用 html5 直接进行文件上传。

 特性

支持上传进度,在上传的时候,可以取消或者中止,支持文件拖拽(html5),目录拖拽(weikit),cors, put(html5)/post 方法

支持使用 flash polyfill fileapi  跨浏览器上传 (html5 和 non-html5) 。允许客户端在上传之前验证或者修改文件。

当文件的内容类型使用 $upload.http()时,支持直接上传到 couchdb,imgur 等等。支持 angular http post/put 请求的进度事件

轻量级,使用常规的 $http 来上传(支持非 html5 浏览器),所以提供所有 angular $http 功能

例子

<!doctype html>
<html ng-app="app">

<head>
 <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
 <title>文件上传</title>
 <meta charset="utf-8"/>
 <script src="js/angular.min.js"></script>
 <script src="js/ng-file-upload.min.js"></script>
 <script src="js/ng-file-upload-shim.min.js"></script>
 <script>
  var app = angular.module('app', ['ngfileupload']);
  app.controller('filecontroller', function ($scope, upload) {
   $scope.uploadimg = '';
   //提交
   $scope.submit = function () {
    $scope.upload($scope.file);
   };
   $scope.upload = function (file) {
    $scope.fileinfo = file;
    upload.upload({
     //服务端接收
     url: 'ashx/uploadfile.ashx',
     //上传的同时带的参数
     data: {'username': $scope.username},
     //上传的文件
     file: file
    }).progress(function (evt) {
     //进度条
     var progresspercentage = parseint(100.0 * evt.loaded / evt.total);
     console.log('progess:' + progresspercentage + '%' + evt.config.file.name);
    }).success(function (data, status, headers, config) {
     //上传成功
     console.log('file ' + config.file.name + 'uploaded. response: ' + data);
     $scope.uploadimg = data;
    }).error(function (data, status, headers, config) {
     //上传失败
     console.log('error status: ' + status);
    });
   };
  });
 </script>
</head>

<body>
 <form ng-controller="filecontroller">
  <img src="{{uploadimg}}"/>
  当前上传用户:<input type="text" placeholder="请输入您的名称" name="name" ng-model="username"/>
  <div class="button" ngf-select ng-model="file" name="file" ngf-pattern="'image/*" accept="image/*" ngf-max-size="20mb" ngf-min-height="100">select</div>
  <button type="submit" ng-click="submit()">submit</button>
  {{fileinfo.name}}<br/>
  {{fileinfo.size}}
 </form>
</body>

</html>

这是前端页面,后端如果用java的话可以用commons-fileupload等文件上传类库。

注意

如果后端使用了struts等框架,框架的过滤器会自动处理http请求中的上传的文件部分,造成在servlet中获取不到请求的文件数据。

解决方法一是更改struts配置文件,将文件上传的过滤器改为我们自己编写的空白过滤器

解决方法二是像submit一个带有<input type="file">的form表单一样,让struts自动获取到上传的文件。只需要在servlet中添加一个file类型的属性,并加入get/set方法。属性的名字一定要是file!!!

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。