我试图掌握这里的模式。如果我有属于用户 (PFUsers) 的“期刊”,我如何查询属于该用户的所有期刊?我认为这是不对的,但一种方法是在所有期刊对象上设置用户名,因为我知道它是唯一的,然后使用该用户名查询所有期刊。这是最好的方法吗?似乎应该有一种更干净的方式来处理关系。
在 iOS guide 中找到了我的问题的答案.我对“嵌套”的搜索没有找到它。 “协会”做到了。
PFUser *user = [PFUser currentUser];
// Make a new post
PFObject *post = [PFObject objectWithClassName"ost"];
[post setObject"My New Post" forKey"title"];
[post setObject"This is some great content." forKey"body"];
[post setObject:user forKey"user"];
[post save];
// Find all posts by the current user
PFQuery *query = [PFQuery queryWithClassName"ost"];
[query whereKey"user" equalTo:user];
NSArray *usersPosts = [query findObjects];
关于ios - 在 Parse 中查询嵌套对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18239482/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |