正确查询Firebase并过滤FDataSnapshot的方法

时间:2016-03-11 02:58:52

标签: ios objective-c macos firebase

Heres a look into my data 在我的应用程序中,用户创建一个项目,每个项目都有title和posted_by。当用户登录我的应用程序时,我想显示他们所做项目的标题。什么是使用Firebase iOS SDK查询此问题的正确方法?

我目前正试图访问https://rocketshiptest.firebaseio.com/projects/ $ PROJID并抓住每个项目。这是我用来执行此操作的代码:

Firebase *ref = [[Firebase alloc] initWithUrl: @"https://rocketshiptest.firebaseio.com/projects"];
[[ref queryOrderedByValue] observeEventType:FEventTypeChildAdded withBlock:^(FDataSnapshot *snapshot) {
    NSString *projPath = [NSString stringWithFormat:@"https://rocketshiptest.firebaseio.com/projects/%@", snapshot.key];
    Firebase *refProj =[[Firebase alloc] initWithUrl:projPath];
    [[refProj queryOrderedByValue] observeEventType:FEventTypeChildAdded withBlock:^(FDataSnapshot *snapshotProj) {
        NSDictionary *arr = snapshotProj.value;
        //What should I do to filter the NSDictionary? 
    }];
}];

但在我抓住这些数据后,我不确定该怎么做。我应该制作一个NSDictionary并存储所有项目,然后使用NSPredicate来过滤我当前用户制作的项目吗?或者Firebase SDK中是否支持仅抓取当前用户制作的项目?

1 个答案:

答案 0 :(得分:1)

Firebase文档建议对数据进行非规范化,这样您就不必在某个位置下载所有数据并在客户端进行过滤。

我建议使用另一个名为users的顶级节点,因为它的密钥会包含使用该应用的所有用户的ID。对于每个用户,您可以存储该用户的数据,如名称或其他内容,以及他们拥有的项目数组。它看起来像这样:

enter image description here

然后,为某个用户获取所有项目很简单:

NSString * currentUserId = ... // stored somewhere in app

Firebase *ref = [[Firebase alloc] initWithUrl:[NSString stringWithFormat:@"https://rocketshiptest.firebaseio.com/users/%@", currentUserId]];

[ref observeEventType:FEventTypeVaue withBlock:^(FDataSnapshot *snapshot) {

    NSArray<NSString*> * projectKeys = [snapshot.value[@"projects"] allKeys];

    for(NSString * projectKey in projectKeys)
    {
        Firebase *projectRef = [[Firebase alloc] initWithUrl:[NSString stringWithFormat:@"https://rocketshiptest.firebaseio.com/projects/%@", projectKey]];

        [projectRef observeEventType:FEventTypeVaue withBlock:^(FDataSnapshot *snapshot) {

            //do something with project
        }];

    }
}];