gpt4 book ai didi

ios - 检查 Firebase 中是否存在记录

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:55:57 27 4
gpt4 key购买 nike

<分区>

我想了解如何在我的 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;

}];

请随意使用 URL 自行检查,反正我只是将其用于测试。

I found something close到我需要的,但是它不在 Objective C 中。

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