AngularJs:如何检查文件输入字段的变化?

时间:2013-07-29 11:13:10

标签: angularjs

我是棱角分明的新人。每当在此字段上发生“更改”时,我都会尝试从HTML“文件”字段中读取上传的文件路径。如果我使用'onChange'它可以工作,但是当我使用'ng-change'的角度方式时,它不起作用。

<script>
   var DemoModule = angular.module("Demo",[]);
   DemoModule .controller("form-cntlr",function($scope){
   $scope.selectFile = function()
   {
        $("#file").click();
   }
   $scope.fileNameChaged = function()
   {
        alert("select file");
   }
});
</script>

<div ng-controller="form-cntlr">
    <form>
         <button ng-click="selectFile()">Upload Your File</button>
         <input type="file" style="display:none" 
                          id="file" name='file' ng-Change="fileNameChaged()"/>
    </form>  
</div>

fileNameChaged()永远不会调用。 Firebug也没有显示任何错误。

15 个答案:

答案 0 :(得分:460)

我做了一个小指令来监听文件输入的变化。

View JSFiddle

<强> view.html:

<input type="file" custom-on-change="uploadFile">

<强> controller.js:

app.controller('myCtrl', function($scope){
    $scope.uploadFile = function(event){
        var files = event.target.files;
    };
});     

<强> directive.js:

app.directive('customOnChange', function() {
  return {
    restrict: 'A',
    link: function (scope, element, attrs) {
      var onChangeHandler = scope.$eval(attrs.customOnChange);
      element.on('change', onChangeHandler);
      element.on('$destroy', function() {
        element.off();
      });

    }
  };
});

答案 1 :(得分:233)

没有对文件上传控件的绑定支持

https://github.com/angular/angular.js/issues/1375

<div ng-controller="form-cntlr">
        <form>
             <button ng-click="selectFile()">Upload Your File</button>
             <input type="file" style="display:none" 
                id="file" name='file' onchange="angular.element(this).scope().fileNameChanged(this)" />
        </form>  
    </div>

而不是

 <input type="file" style="display:none" 
    id="file" name='file' ng-Change="fileNameChanged()" />
你可以尝试

吗?
<input type="file" style="display:none" 
    id="file" name='file' onchange="angular.element(this).scope().fileNameChanged()" />
  

注意:这要求角度应用始终位于debug mode。如果禁用调试模式,这将无法在生产代码中使用。

并在您的功能中更改 而不是

$scope.fileNameChanged = function() {
   alert("select file");
}
你可以尝试

吗?
$scope.fileNameChanged = function() {
  console.log("select file");
}

下面是一个使用拖放文件上传文件上传的工作示例可能会有所帮助 http://jsfiddle.net/danielzen/utp7j/

角度文件上传信息

ASP.Net中AngularJS文件上传的URL

http://cgeers.com/2013/05/03/angularjs-file-upload/

使用NodeJS进展的AngularJs本机多文件上载

http://jasonturim.wordpress.com/2013/09/12/angularjs-native-multi-file-upload-with-progress/

ngUpload - 用于使用iframe上传文件的AngularJS服务

http://ngmodules.org/modules/ngUpload

答案 2 :(得分:38)

这是对其他一些的改进,数据将最终出现在ng模型中,这通常是你想要的。

标记(只需创建属性数据文件,以便指令可以找到它)

<input
    data-file
    id="id_image" name="image"
    ng-model="my_image_model" type="file">

JS

app.directive('file', function() {
    return {
        require:"ngModel",
        restrict: 'A',
        link: function($scope, el, attrs, ngModel){
            el.bind('change', function(event){
                var files = event.target.files;
                var file = files[0];

                ngModel.$setViewValue(file);
                $scope.$apply();
            });
        }
    };
});

答案 3 :(得分:27)

干净的方法是编写自己的指令以绑定到“change”事件。 只是为了让你知道IE9不支持FormData,所以你无法真正从更改事件中获取文件对象。

您可以使用已支持IE的ng-file-upload库和FileAPI polyfill,并简化将文件发布到服务器的过程。它使用指令来实现这一目标。

<script src="angular.min.js"></script>
<script src="ng-file-upload.js"></script>

<div ng-controller="MyCtrl">
  <input type="file" ngf-select="onFileSelect($files)" multiple>
</div>

JS:

//inject angular file upload directive.
angular.module('myApp', ['ngFileUpload']);

var MyCtrl = [ '$scope', 'Upload', function($scope, Upload) {
  $scope.onFileSelect = function($files) {
    //$files: an array of files selected, each file has name, size, and type.
    for (var i = 0; i < $files.length; i++) {
      var $file = $files[i];
      Upload.upload({
        url: 'my/upload/url',
        data: {file: $file}
      }).then(function(data, status, headers, config) {
        // file is uploaded successfully
        console.log(data);
      }); 
    }
  }
}];

答案 4 :(得分:26)

我已经扩展了@Stuart Axon的想法,为文件输入添加双向绑定(即允许通过将模型值重置为null来重置输入):

app.directive('bindFile', [function () {
    return {
        require: "ngModel",
        restrict: 'A',
        link: function ($scope, el, attrs, ngModel) {
            el.bind('change', function (event) {
                ngModel.$setViewValue(event.target.files[0]);
                $scope.$apply();
            });

            $scope.$watch(function () {
                return ngModel.$viewValue;
            }, function (value) {
                if (!value) {
                    el.val("");
                }
            });
        }
    };
}]);

Demo

答案 5 :(得分:19)

与这里的其他一些好的答案类似,我写了一个指令来解决这个问题,但是这个实现更接近地反映了附加事件的角度方式。

你可以使用这样的指令:

<强> HTML

<input type="file" file-change="yourHandler($event, files)" />

如您所见,您可以将选定的文件注入事件处理程序,就像将$ event对象注入任何ng事件处理程序一样。

<强>的Javascript

angular
  .module('yourModule')
  .directive('fileChange', ['$parse', function($parse) {

    return {
      require: 'ngModel',
      restrict: 'A',
      link: function ($scope, element, attrs, ngModel) {

        // Get the function provided in the file-change attribute.
        // Note the attribute has become an angular expression,
        // which is what we are parsing. The provided handler is 
        // wrapped up in an outer function (attrHandler) - we'll 
        // call the provided event handler inside the handler()
        // function below.
        var attrHandler = $parse(attrs['fileChange']);

        // This is a wrapper handler which will be attached to the
        // HTML change event.
        var handler = function (e) {

          $scope.$apply(function () {

            // Execute the provided handler in the directive's scope.
            // The files variable will be available for consumption
            // by the event handler.
            attrHandler($scope, { $event: e, files: e.target.files });
          });
        };

        // Attach the handler to the HTML change event 
        element[0].addEventListener('change', handler, false);
      }
    };
  }]);

答案 6 :(得分:16)

该指令也传递所选文件:

/**
 *File Input - custom call when the file has changed
 */
.directive('onFileChange', function() {
  return {
    restrict: 'A',
    link: function (scope, element, attrs) {
      var onChangeHandler = scope.$eval(attrs.onFileChange);

      element.bind('change', function() {
        scope.$apply(function() {
          var files = element[0].files;
          if (files) {
            onChangeHandler(files);
          }
        });
      });

    }
  };
});

HTML,如何使用它:

<input type="file" ng-model="file" on-file-change="onFilesSelected">

在我的控制器中:

$scope.onFilesSelected = function(files) {
     console.log("files - " + files);
};

答案 7 :(得分:6)

我建议创建一个指令

<input type="file" custom-on-change handler="functionToBeCalled(params)">

app.directive('customOnChange', [function() {
        'use strict';

        return {
            restrict: "A",

            scope: {
                handler: '&'
            },
            link: function(scope, element){

                element.change(function(event){
                    scope.$apply(function(){
                        var params = {event: event, el: element};
                        scope.handler({params: params});
                    });
                });
            }

        };
    }]);

该指令可以多次使用,它使用自己的范围并且不依赖于父范围。你也可以给处理函数一些参数。将使用范围对象调用处理程序函数,该对象在您更改输入时处于活动状态。 每次调用更改事件时,$ apply都会更新模型

答案 8 :(得分:4)

最简单的Angular jqLit​​e版本。

JS:

.directive('cOnChange', function() {
    'use strict';

    return {
        restrict: "A",
        scope : {
            cOnChange: '&'
        },
        link: function (scope, element) {
            element.on('change', function () {
                scope.cOnChange();
        });
        }
    };
});

HTML:

<input type="file" data-c-on-change="your.functionName()">

答案 9 :(得分:1)

使用ng-change 1

的“文件输入”指令的工作演示

要使<input type=file>元素符合ng-change指令,它需要custom directive符合ng-model指令。

<input type="file" files-input ng-model="fileList" 
       ng-change="onInputChange()" multiple />

DEMO

angular.module("app",[])
.directive("filesInput", function() {
  return {
    require: "ngModel",
    link: function postLink(scope,elem,attrs,ngModel) {
      elem.on("change", function(e) {
        var files = elem[0].files;
        ngModel.$setViewValue(files);
      })
    }
  }
})

.controller("ctrl", function($scope) {
     $scope.onInputChange = function() {
         console.log("input change");
     };
})
<script src="//unpkg.com/angular/angular.js"></script>
  <body ng-app="app" ng-controller="ctrl">
    <h1>AngularJS Input `type=file` Demo</h1>
    
    <input type="file" files-input ng-model="fileList" 
           ng-change="onInputChange()" multiple />
    
    <h2>Files</h2>
    <div ng-repeat="file in fileList">
      {{file.name}}
    </div>
  </body>

答案 10 :(得分:0)

太完整的解决方案基于:

`onchange="angular.element(this).scope().UpLoadFile(this.files)"`

一种隐藏输入字段并将其替换为图像的简单方法,此处在解决方案之后,还需要对角度进行破解但执行作业[TriggerEvent无法按预期工作]

解决方案:

  • 将输入字段放在display:none [DOM中存在输入字段但不可见]
  • 立即放置您的图像 在图像上使用nb-click()激活方法

单击图像时,在输入字段上模拟DOM操作“单击”。 Etvoilà!

 var tmpl = '<input type="file" id="{{name}}-filein"' + 
             'onchange="angular.element(this).scope().UpLoadFile(this.files)"' +
             ' multiple accept="{{mime}}/*" style="display:none" placeholder="{{placeholder}}">'+
             ' <img id="{{name}}-img" src="{{icon}}" ng-click="clicked()">' +
             '';
   // Image was clicked let's simulate an input (file) click
   scope.inputElem = elem.find('input'); // find input in directive
   scope.clicked = function () {
         console.log ('Image clicked');
         scope.inputElem[0].click(); // Warning Angular TriggerEvent does not work!!!
    };

答案 11 :(得分:0)

我这样做了;

<!-- HTML -->
<button id="uploadFileButton" class="btn btn-info" ng-click="vm.upload()">    
<span  class="fa fa-paperclip"></span></button>
<input type="file" id="txtUploadFile" name="fileInput" style="display: none;" />
// self is the instance of $scope or this
self.upload = function () {
   var ctrl = angular.element("#txtUploadFile");
   ctrl.on('change', fileNameChanged);
   ctrl.click();
}

function fileNameChanged(e) {
    console.log(self.currentItem);
    alert("select file");
}

答案 12 :(得分:0)

监听文件输入更改的另一个有趣方法是监视输入文件的ng-model属性。当然,FileModel是一个自定义指令。

像这样:

HTML - &gt; <input type="file" file-model="change.fnEvidence">

JS代码 - &gt;

$scope.$watch('change.fnEvidence', function() {
                    alert("has changed");
                });

希望它可以帮助某人。

答案 13 :(得分:0)

Angular元素(例如指令的根元素)是jQuery [Lite]对象。这意味着我们可以像这样注册事件监听器:

link($scope, $el) {
    const fileInputSelector = '.my-file-input'

    function setFile() {
        // access file via $el.find(fileInputSelector).get(0).files[0]
    }

    $el.on('change', fileInputSelector, setFile)
}

这是jQuery事件委托。这里,监听器附加到指令的根元素。当事件被触发时,它将冒泡到注册的元素,jQuery将确定事件是否源自与定义的选择器匹配的内部元素。如果是,则处理程序将触发。

此方法的好处是:

  • 处理程序绑定到$元素,当指令范围被销毁时将自动清理。
  • 模板中没有代码
  • 即使目标委托(输入)在注册事件处理程序时尚未呈现(例如使用ng-ifng-switch时),
  • 也会起作用

http://api.jquery.com/on/

答案 14 :(得分:0)

您只需在onchange中添加以下代码,它将检测到更改。您可以通过单击X或其他方式编写函数来删除文件数据。

document.getElementById(id).value = "";