AngularJS:将ng-model绑定到input [type = file]会引发'不再可用'异常

时间:2013-10-29 22:54:10

标签: angularjs angularjs-ng-repeat

使用此代码:

<!doctype html>
<html lang="en" ng-app="app">
<head>
    <meta charset="UTF-8">
    <title>ngTest</title>
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0-rc.3/angular.js"></script>
    <script>
        angular
            .module('app', [])
            .controller('Main', ['$scope', function($s) {
                $s.data = {
                    level1: {
                        level2: {
                            elements: [{
                                name: 'item1'
                            },{
                                name: 'item2'
                            },{
                                name: 'item3'
                            },{
                                name: 'item4'
                            }]
                        }
                    }
                };
            }]);
    </script>
</head>
<body ng-controller="Main">
    <div ng-repeat="item in data.level1.level2.elements">
        <input type="file" ng-model="item.name">
    </div>
    <pre>{{data}}</pre>
</body>

会引发此错误:

Error: An attempt was made to use an object that is not, or is no longer, usable.

type="file"更改为type="text"后,错误就会消失。知道怎么解决这个问题吗?我将编写一个指令,即使在输入上也会监听change,上传给定文件并将其值分配给绑定模型。但我这个错误阻止了我这样做。最近几天花了我很多头发。关于此事的任何意见都将不胜感激。

1 个答案:

答案 0 :(得分:2)

对于单个输入,我只需使用

<input ng-model="file" onchange="angular.element(this).scope().upload(this)" type="file">

然后我可以访问控制器函数中的fileList并将其发送到fileReader,例如

$scope.upload = function(el) {
  console.log(el.files);
};

我将其扩展为ng-repeat的情况,因此您可以查看此plunker