我有以下代码:
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#没有方法'push'问题。有了这个问题,我得到的数据还可以。它进入$ scope.grid.data但在尝试angular.copy数据时给我一个错误。
答案 0 :(得分:9)
仔细查看angular.copy
doc:
destination(可选) - {(Object | Array)=} - 将源复制到的目标。如果提供,则必须与源类型相同。
你从服务电话回来的结果可能是一个数组;然而,您将$scope.grid.originalData
初始化为对象或除数组之外的其他内容,因此您遇到此类型错误。
尝试确定result
的类型,并在调用$scope.grid.originalData
之前使angular.copy
成为相同的类型。