gpt4 book ai didi

ios - 在 swift 3 中单击按钮从 Firebase 中删除 "posts"

转载 作者:行者123 更新时间:2023-11-28 10:53:07 25 4
gpt4 key购买 nike

这是我在 firebase 中存储帖子的方式。单击按钮将其删除时,我试图删除此引用。我无法理解如何访问此“帖子”节点。 enter image description here

最佳答案

假设 posts 是根引用的直接子元素。

let userRef = FIRDatabase.database().reference().child("posts")
userRef.removeValue { (error, userRef) in
if error != nil {
print(error)
return
}
print("Posts Deleted")
}

关于ios - 在 swift 3 中单击按钮从 Firebase 中删除 "posts",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45271902/

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