如何使用解析添加两个PFquery数据的对象?

时间:2013-07-06 05:48:16

标签: ios parse-platform pfquery

我有两个查询,一个是friendsrequestQuery,另一个是用户查询,我想在从用户查询中获取数据时将friendrequestQuery详细信息的所有数据添加到用户查询中。

NSPredicate *predicate12=[NSPredicate predicateWithFormat:@"((UserFriendId == %@ )AND (UserId!=%@)) OR ((UserFriendId != %@ )AND (UserId==%@)) ",@"Nwk44aeSrz",@"Nwk44aeSrz",@"Nwk44aeSrz",@"Nwk44aeSrz"];
PFQuery *innerQuery = [PFQuery queryWithClassName:@"FriendsDetails" predicate:predicate12];
[innerQuery whereKey:@"BlockStatus" equalTo:@"No"];
PFQuery * userQuery = [PFUser query];

[userQuery whereKey:@"objectId" matchesKey:@"UserFriendId" inQuery:innerQuery];
[userQuery whereKey:@"objectId" matchesKey:@"UserId" inQuery:innerQuery];

[userQuery whereKey:@"objectId" notEqualTo:@"Nwk44aeSrz"];

我将解释我需要的东西是什么,在innerquery表中我有10列,但我需要这些特殊的coloum数据的数据converstionid,lastmessage,lastdate,同时重新检查用户查询的数据。 现在我得到了userquery的详细信息,但没有得到innerquery的详细信息,所以我需要详细的Innerquerydetails。 请帮帮我。

1 个答案:

答案 0 :(得分:0)

我认为你最好存储指针而不是Id,这样你也可以包含这些数据。

我不会使用谓词,我意识到你的查询对谓词更清晰,但我认为逻辑更易于看到。你可以自己将它转换回谓词。

// get your user
PFUser * userForQuery; // set up your user for the query, if it's current user, = [PFUser currentUser];

// first part of predicate
PFQuery * innerQueryA = [PFQuery queryWithClassName:@"FriendsDetails"];
[innerQueryA whereKey:@"UserFriend" equalTo:userForQuery]; // from  @"UserFriendId"
[innerQueryA whereKey:@"User" notEqualTo:userForQuery]; // from @"UserId"

// second part of predicate
PFQuery * innerQueryB = [PFQuery queryWithClassName:@"FriendsDetails"];
[innerQueryB whereKey:@"userFriend" notEqualTo:userForQuery]; // from @"UserFriendId"
[innerQueryB whereKey:@"user" equalTo:userForQuery]; // from @"UserId"

// combine
PFQuery * query = [PFQuery orQueryWithSubqueries:@[innerQueryA, innerQueryB]];
[query whereKey:@"BlockStatus" equalTo:@"No"];

// Now, as you remember, we are storing a pointer in @"User" as opposed to an id @"UserId" as you had it. Because of     
// this, we will use parse's includeKey: feature.

[query includeKey:@"User"]; // tells the query to include the data associated with these keys;

NSMutableArray * usersRetrieved = [[NSMutableArray alloc]init];
[query findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) {
    if (!error) {    
        // objects will contain all of your objects
        for (PFObject * object in objects) {
            [usersRetrieved addObject:object[@"User"]]; // all the data should be available for the @"User" object
        }

        // objects will contain all the @"friendDetails" objects
        // usersRetrieved will contain all the @"User" objects
    }
    else {
    }
}];

我意识到这会稍微改变您的数据结构,但它应该为您提供所需的所有数据。