gpt4 book ai didi

ios - 使用 Parse 检索与您在同一个公会中的所有公会成员

转载 作者:行者123 更新时间:2023-11-29 02:36:25 27 4
gpt4 key购买 nike

我如何使用解析检索您公会中的所有公会成员?

这是我的代码:

PFUser *currentuser = [PFUser currentUser];
PFQuery *query = [PFQuery queryWithClassName:@"User"];
[query whereKey:@"connectedGuild" equalTo:currentuser[@"connectedGuild"]];
[query findObjectsInBackgroundWithBlock:^(NSArray *comments, NSError *error) {
NSLog(@"There are %d guildmembers. Error:%@", comments.count, error);
}];

我的日志:

There are 0 guild members. Error:(null)

connectedGuild 是指向我存储所有公会的公会类的指针。

最佳答案

PFUser 类的查询必须以稍微不同的方式实例化。试试这个:

PFUser *currentuser = [PFUser currentUser];
PFQuery *query = [PFUser query];
[query whereKey:@"connectedGuild" equalTo:currentuser[@"connectedGuild"]];
[query findObjectsInBackgroundWithBlock:^(NSArray *comments, NSError *error) {
NSLog(@"There are %d guildmembers. Error:%@", comments.count, error);
}];

有关详细信息,请访问此处的 Parse.com 网站: https://www.parse.com/questions/get-pfuser-in-pfquery-using-ios-api

关于ios - 使用 Parse 检索与您在同一个公会中的所有公会成员,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26319832/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com