我在我的应用程序中使用Parse.com,我创建了一个“Post”类,在里面我有一个指针指定哪个用户发送了帖子。现在我在帖子的时间轴上看到了创建帖子的用户名的时间。由于用户是指针,我无法进行正确的查询,您知道如何解决此问题吗?
答案 0 :(得分:5)
诀窍是使用PFQuery includeKey
让Parse自动填充相关的指针数据。
将下载user
数据,而无需您对其进行其他查询。
PFQuery *query = [PFQuery queryWithClassName:@"Post"];
// Include the user data with each post
[query includeKey:@"title_of_userpointer_column"];
[query findObjectsInBackgroundWithBlock:^(NSArray *postObjects, NSError *error)
{
if (!error) {
NSLog(@"Successfully retrieved: %d items", [postObjects count]);
// postObjects now contains the latest 100 Posts, and the "title_of_userpointer_column" field
// has been populated.
// For example:
for (PFObject * postObject in postObjects) {
// This does not require a network access.
PFObject *postAuthor = [postObject objectForKey:@"title_of_userpointer_column"];
NSLog(@"retrieved related Post Author: %@", postAuthor);
}
}
答案 1 :(得分:4)
您可以通过添加以下代码行(在Android中)从Post表中检索用户字段的指针:
postQuery.include("pointerToUser");
postQuery
是类Post
的查询。通过这种方式,在执行查询之后,将返回的一个或多个对象将具有用户信息。
您可以在此处查看完整示例: How to query value of column that is set as pointer to other table in Parse