このコードを実行しています。people コレクションには 20 人が含まれ、各 body には 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 = '';
};
});
});
});