AngularJS不重复的容器内工作的文件上传(AngularJS ng-file-upload n

2019-10-23 18:11发布

我有指令“笔记”,这基本上是一个Notes窗口小部件,我可以添加任何网页上,并只需添加一个名称和ID它允许人们添加注释到该项目。

该用户应该能够将文件上传到使用Notes NG-文件上传如现在,但我很难拿到$scope.files由NG-文件上传指令填充。 我敢肯定它是像往常一样愚蠢的东西与范围,但我无法弄清楚。

那么,为什么当我选择一个文件$ scope.files被不填充任何想法?

Plunker链接

指示:

angular.module('app').directive('notes', [function () {
    return {
        restrict: 'E',
        templateUrl: 'notes.html',
        scope: {
            itemId: '@',
            itemModel: '@'
        },
        controller: ['$scope', 'Upload', function($scope, Upload) {
            $scope.files = [];
            $scope.notes = [
              {title: 'first title'},
              {title: 'second title'}
            ];

            $scope.$watch('files', function (files) {
                console.log(files);
                $scope.formUpload = false;
                if (files != null) {
                    for (var i = 0; i < files.length; i++) {
                        $scope.errorMsg = null;
                        (function (file) {
                            uploadUsingUpload(file);
                        })(files[i]);
                    }
                }
            });

            function uploadUsingUpload(file) {
                file.upload = Upload.upload({
                    url: '/api/v1/notes/upload_attachment',
                    method: 'POST',
                    //headers: {
                    //  'my-header': 'my-header-value'
                    //},
                    //fields: {username: $scope.username},
                    file: file,
                    fileFormDataName: 'file'
                });

                file.upload.then(function (response) {
                    $timeout(function () {
                        file.result = response.data;
                    });
                }, function (response) {
                    if (response.status > 0)
                        $scope.errorMsg = response.status + ': ' + response.data;
                });

                file.upload.progress(function (evt) {
                    // Math.min is to fix IE which reports 200% sometimes
                    file.progress = Math.min(100, parseInt(100.0 * evt.loaded / evt.total));
                });

                file.upload.xhr(function (xhr) {
                    // xhr.upload.addEventListener('abort', function(){console.log('abort complete')}, false);
                });
            }

        }]
    };
}]);

模板:

<ul>
  <li ng-repeat="note in notes">
    {{note.title}}
    <div ngf-select ng-model="files"><b>upload</b></div>
  </li>
</ul>
<pre style="border: 1px solid red;">{{files | json}}</pre>

Answer 1:

我有点晚了这里,但为什么你有更新$ scope.files财产问题的原因是因为被你的NG-重复内创建一个新的范围。

<ul>
    <li ng-repeat="note in notes">
        {{note.title}}
        <div ngf-select ng-model="$parent.files"><b>upload</b></div>
    </li>
</ul>
<pre style="border: 1px solid red;">{{files | json}}</pre>

有关作用域的角度如何工作的更多信息,请查看https://github.com/angular/angular.js/wiki/Understanding-Scopes



Answer 2:

NG-文件上传将所选择的文件中的对象“文件”模式(或绑定到NG-模型中的属性)在封闭范围。 在这种情况下,封闭范围为NG-重复。 如果您在笔记对象的属性集,“文件”,并将其设置为NG-模型它应该工作。

http://plnkr.co/edit/oVpgrSWQAcFdV26aVKv7?p=preview

<ul>
  <li ng-repeat="note in notes" >
    {{note.title}}
    <div ngf-select ng-model="note.files"><b>upload</b></div>
  </li>
</ul>

  // In directive
  $scope.notes = [{
    title: 'first title',
    files: []
  }, {
    title: 'second title',
    files: []
  }];

 //And you can watch the file model
  $scope.$watch(function($scope) {
    return $scope.notes.
    map(function(note) {
      return note.files;
    });
  }, function(files) {
      console.log('Files' + files);
  }, true)


Answer 3:

我加入NGF,选择动态ID,它是对我很好的工作。

<ul>
 <li ng-repeat="note in notes">
   {{note.title}}
   <div ngf-select id="file{{$index}}" ng-model="files"><b>upload</b></div>
  </li>
</ul>


文章来源: AngularJS ng-file-upload not working inside ng-repeat