检查Firebase中是否存在记录

时间:2016-05-25 10:24:24

标签: ios objective-c firebase firebase-realtime-database

我试图了解如何在Firebase数据库中进行搜索,以检查是否存在记录,如果是,则抓取该特定分支下的详细信息。

目前我可以通过抓取特定记录并将其放入文本字​​段并从那里开始来完成我需要的操作,但是我需要检查数据库中的多个记录,直到找到特定记录并从那里加载该分支下的所有细节。

这是我目前正在做的事情;

    Firebase *ref = [[Firebase alloc] initWithUrl: @"https://sizzling-inferno-255.firebaseio.com/"];

//Refer to users entity
Firebase *usersRef = [ref childByAppendingPath: @"id/"];

// Read data and react to changes
[usersRef observeEventType:FEventTypeValue withBlock:^(FDataSnapshot *snapshot) {
    NSLog(@"%@ -> %@", snapshot.key, snapshot.value);

    NSDictionary *dict=[NSDictionary dictionaryWithDictionary:snapshot.value];
    NSString *stri=[NSString stringWithFormat:@"%@",dict];

    _textview1.text = stri;

    string1 = snapshot.key;
    _label1.text = string1;

}];

您可以随意使用网址进行自我检查,无论如何我只会用它进行测试。

I found something close我所需要的,但不是在目标C中。

1 个答案:

答案 0 :(得分:3)

我是firebase的新手,但我在新版本上工作太多了。

Record key内的sizzling-inferno-255FIRDatabaseReference *usersRef = [[FIRDatabase database] reference]; [[[[usersRef child:@"results"] child:@"sizzleing-inferno-255"] child:@"record"] observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot * _Nonnull snapshot) { NSString *record = snapshot.value; if(record.length > 0) { // Yes! there is a record. } } 的名称吗?如果是的话。在这个新版本中,您可以通过以下方式检索一些信息:

{{1}}

这就是你想要的吗?让我知道。