我正在运行此代码。 人物集合包含20个人,每个人都有朋友列表字段,包含6个朋友。 写在下面的查询不会返回任何数据。但如果你删除查询然后它返回20人。 我怀疑下面的代码是正确还是错误。
Restangular.one('people',JSON.parse(user_id)).get().then(function(user) {
$scope.user = user;
$scope.infinitePosts = new InfinitePosts(user);
if (user.friends.length !== 0) {
console.log($scope.user.friends)
Restangular.all('people').getList({
where: {
"_id": {
"$in": $scope.user.friends
}
}
}).then(function(friend) {
console.log("------------------")
console.log(friend)
$scope.friends = friend;
});
下面的总代码。
angular.module('weberApp')
.controller('MainCtrl', function($scope, $auth, Restangular, InfinitePosts, $alert, $http, CurrentUser, UserService) {
$scope.UserService = UserService;
$http.get('/api/me', {
headers: {
'Content-Type': 'application/json',
'Authorization': $auth.getToken()
}
}).success(function(user_id) {
Restangular.one('people',JSON.parse(user_id)).get().then(function(user) {
$scope.user = user;
$scope.infinitePosts = new InfinitePosts(user);
if (user.friends.length !== 0) {
console.log($scope.user.friends)
Restangular.all('people').getList({
where: {
"_id": {
"$in": $scope.user.friends
}
}
}).then(function(friend) {
console.log("------------------")
console.log(friend)
$scope.friends = friend;
});
}
$scope.submit_post = function() {
$scope.infinitePosts.addPost($scope.new_post);
$scope.new_post = '';
};
});
});
});
答案 0 :(得分:0)
控制台中有错误吗?请求如何?您是否尝试过解决服务器响应问题?