1

私はディレクティブ「メモ」を持っています。これは基本的に、任意のページに追加できるメモ ウィジェットであり、名前と ID を追加して、人々がそのアイテムにメモを追加できるようにします。

ユーザーはng-file-uploadを使用してノートにファイルをアップロードできるはずですが$scope.files、 ng-file-upload ディレクティブでデータを取り込むのに苦労しています。いつものようにスコープがおかしいと確信していますが、わかりません。

ファイルを選択したときに $scope.files が入力されない理由はありますか?

プランカーリンク

指令:

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>
4

3 に答える 3

2

ここで少し遅れましたが、 $scope.files プロパティの更新に問題があるのは、ng-repeat 内で新しいスコープが作成されているためです。

<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>

angularチェックアウトでスコープがどのように機能するかの詳細については、https://github.com/angular/angular.js/wiki/Understanding-Scopes

于 2016-04-17T04:08:38.753 に答える
1

ng-file-upload は、選択したファイル オブジェクトを「ファイル」モデル (または ng-model に関連付けられた属性) で囲んでいるスコープに設定します。この場合、囲んでいるスコープは ng-repeat です。note オブジェクトに属性「files」を設定し、それを ng-model として設定すると、機能するはずです。

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)
于 2015-07-09T12:42:15.207 に答える