我正在尝试使用以下指令从文件输入中获取多个文件附件:
var app = angular.module('app',['ui.bootstrap']).config(function($interpolateProvider){
$interpolateProvider.startSymbol('{|');
$interpolateProvider.endSymbol('|}');
}
).directive('ngFile',function(){
return {
scope: {
ngFile: '='
},
link: function(scope, el, attrs){
el.bind('change', function(event){
scope.$apply(function(){
scope.ngFile = event.target.files[0];
});
});
}
};
});
现在我有下面的角度/模板代码
<div ng-repeat="attachment in messages.attachments">
... some html code
<input type="file" ng-file="attachment">
... some more html
</div>
我正在尝试通过以下方式访问我的文件:
$scope.messages.attachments[ someIndex ] // Returns $$hashkey
但这所做的只是返回一些散列键 $$hashkey。
问题 1) 这个 $$hashkey 对象到底是什么,它的用途是什么?
问题 2) 如何使用 $scope.messages.attachments 访问我的文件?