gpt4 book ai didi

swift - 如何知道 firebase 数据库中是否存在路径

转载 作者:行者123 更新时间:2023-11-28 14:36:55 26 4
gpt4 key购买 nike

我的数据结构如下:

-posts
-postID
-name
-text

我正在检索帖子

Database.database().refrence.child(“posts”).observe(.childAdded){ (snap) in
If snap.value is nsnull{}else{
The retriving data code here
}
}

点击时。在帖子上

Database.database().refrence.child(“posts”).child(postID).observe(.childAdded){ (snap) in
If snap.value is nsnull{}else{
The retriving data code here
}
}

一切都很顺利,除了如何知 Prop 有特定 postid 的特定帖子是否被删除,因为它不会在 observe 函数的代码中通过。我想通过查看路径是否存在来显示一条消息,表明该帖子已被删除。

注意:如果帖子被删除,我不想更改键的值。

最佳答案

如果您想知道任何帖子何时被删除,请监听类似于您当前的 .childAdded.childRemoved 事件。

如果你想知道一个特定的帖子是否存在(一旦你知道它的 ID),你可以通过观察它的 .value 事件来实现。例如

ref.child("rooms/room1").observeSingleEvent(of: .value, with: { (snapshot) in
if snapshot.exists(){
print("true rooms exist")
}else{
print("false room doesn't exist")
}
})

关于swift - 如何知道 firebase 数据库中是否存在路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50824250/

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