Swift Firebase删除子

时间:2017-11-21 19:26:18

标签: ios swift firebase firebase-realtime-database firebase-storage

需要有关如何删除孩子中特定孩子的帮助。我可以通过查询调用访问正确的孩子,但我不知道如何删除那个特定的孩子,因为我现在正在删除与该用户相关的所有内容。下面的图片是我的火柱子结构。对于“帖子”,我想删除“-KzV-uwXL9lbP5wbsQ7W”。也许当我创建“帖子”时,我需要将这个“id”添加到查询调用的结构中?不确定,只是想...谢谢。

Database.database().reference().child("posts").child(uid!).queryOrdered(byChild: "download_url").queryEqual(toValue: pictureImage).observe(.value, with: { snapshot in
                if snapshot.exists() {

                   snapshot.ref.removeValue()

                    print("snapshot exists")
                } else {
                    print("snapshot doesn't exist")
                }
            })

enter image description here

0 个答案:

没有答案