3

次のコードがあります。

getContents: function ($scope, entityType, action, subjectId, contentTypeId, contentStatusId) {
                entityService.getContents(entityType, action, subjectId, contentTypeId, contentStatusId)
                .then(function (result) {
                    $scope.grid.data = result;
                    angular.copy($scope.grid.data, $scope.grid.originalData);
                    $scope.grid.newButtonEnabled = true;
                }, function (result) {
                    alert("Error: No data returned");
                    $scope.grid.newButtonEnabled = false;
                });
            },

次に、entityService の次の関数:

        getContents: function (entityType, action, subjectId, contentTypeId, contentStatusId) {
            var deferred = $q.defer();
            EntityResource.getEntities({ entityType: entityType, subjectId: subjectId, contentTypeId: contentTypeId, contentStatusId: contentStatusId },
               function (resp) {
                   deferred.resolve(resp);
               }
            );
            return deferred.promise;
        },

angular.copy を実行しようとすると、次のメッセージが表示されます。

TypeError: Object #<Object> has no method 'push'
    at Object.copy (http://127.0.0.1:81/Scripts/angular.js:600:21)
    at factory.getContents.entityService.getContents.then.$scope.grid.newButtonEnabled (http://127.0.0.1:81/Content/app/admin/services/grid-service.js:303:29)
    at deferred.promise.then.wrappedCallback (http://127.0.0.1:81/Scripts/angular.js:7303:59)
    at ref.then (http://127.0.0.1:81/Scripts/angular.js:7340:26)
    at Object.$get.Scope.$eval (http://127.0.0.1:81/Scripts/angular.js:8685:28)
    at Object.$get.Scope.$digest (http://127.0.0.1:81/Scripts/angular.js:8548:23)
    at Object.$get.Scope.$apply (http://127.0.0.1:81/Scripts/angular.js:8771:24)
    at done (http://127.0.0.1:81/Scripts/angular.js:10004:20)
    at completeRequest (http://127.0.0.1:81/Scripts/angular.js:10180:7)
    at XMLHttpRequest.xhr.onreadystatechange (http://127.0.0.1:81/Scripts/angular.js:10144:11) 

返されたデータのコピーを作成する方法を知っている人はいますか? このデータは ngResource から返されることに注意してください。また、これは Stackoverflow に関連する他の問題とは異なるようです: TypeError: Object # has no method 'push' question. この問題により、データを正常に戻すことができます。$scope.grid.data に入りますが、データを angular.copy しようとするとエラーが発生します。

4

1 に答える 1

9

angular.copy docをよく見てください:

destination(optional) – {(Object|Array)=} – ソースのコピー先。指定する場合は、ソースと同じタイプである必要があります。

サービス呼び出しから返された結果は、おそらく配列です。ただし$scope.grid.originalData、オブジェクトまたは配列以外のものとして初期化したため、このタイプのエラーが発生しました。

がどのような型であるかを把握し、を呼び出す前に同じ型resultを作成してください。$scope.grid.originalDataangular.copy

于 2013-07-22T13:26:07.150 に答える