我有这段代码:
PostApp.factory('loadPage', function ($http) {
return {
loadOtherPage: function (page, status, permition, order, cultureId) {
$http({
url: '/Administrator/Post/PagedIndex',
method: "POST",
data: { page: page, status: status, permition: permition, order: order, cultureId: cultureId }
}).success(function(data) {
return data;
});
}
};
});
PostApp.controller('PostController',
function ($scope, $http, loadPage) {
$scope.status = 'Published';
$scope.permition = 'Global';
$scope.order = 'Asscending';
$scope.cultureId = 1;
$scope.ListOfItems = [];
$scope.start = 2;
$scope.skip = 10;
$scope.loaddata = function () {
$scope.ListOfItems = loadPage.loadOtherPage($scope.start, $scope.status, $scope.permition, $scope.order, $scope.cultureId);
};
}
);
但是不要将loadPage.loadOtherPage服务的响应设置为$ scope.ListOfItems varible。 响应是浏览器控制台中的json:
[{"PId":15,"Id":15,"Status":"انتشار","Permition":"سراسری","PublishedDateEn":"08/19/2013","Title":"xxxxxxxxxxxx","CultureId":1,"Username":"naser","CommentCount":0},{"PId":16,"Id":16,"Status":"انتشار","Permition":"سراسری","PublishedDateEn":"08/19/2013","Title":"yyyyyyyyyyyyyyyyyy","CultureId":1,"Username":"naser","CommentCount":0},{"PId":17,"Id":17,"Status":"انتشار","Permition":"سراسری","PublishedDateEn":"08/21/2013","Title":"zzzzzzzzzzzzzzzz","CultureId":1,"Username":"naser","CommentCount":0}]
final $ scope.ListOfItems是空的吗?
答案 0 :(得分:1)
(已编辑:为了更加清晰而添加变量)
loadOtherPage
函数不返回任何内容,这就是$scope.ListOfItems
为空的原因。正确的方法是:
loadOtherPage: function (page, status, permition, order, cultureId) {
var httpPromise = $http({
url: '/Administrator/Post/PagedIndex',
method: "POST",
data: { ... }
});
return httpPromise;
}
你基本上将$http
返回的承诺返回给调用者。您的控制器应该成为:
$scope.loaddata = function () {
var loadPagePromise = loadPage.loadOtherPage( ... );
loadPagePromise.success(function(data) {
$scope.ListOfItems = data;
});
};