我在Firebase中有一个名为peopleWhoLike
的字典,密钥是自动ID,值是喜欢的用户的uid,我正在尝试遍历peopleWhoLike
字典,找到当前用户uid作为值的条目,以便我可以将其删除,但该值不会被删除。
func removeLike(postID: String){
ref.child("posts").child(postID).observe(.value, with: { (snapshot) in
if let info = snapshot.value as? [String : AnyObject]{
if var peopleWhoLike = info["peopleWhoLike"] as? [String : String]{
print("peopleWhoLike - \(peopleWhoLike)")
for person in peopleWhoLike{
if person.value == FIRAuth.auth()!.currentUser!.uid{
peopleWhoLike.removeValue(forKey: person.key)
print("personkey - \(person.key)")
}
}
}
}
})
}
两个打印报表都正确打印,即person.key
是正确的密钥
非常感谢任何帮助,谢谢!
答案 0 :(得分:0)
你只有那里的数据快照(副本)
从firebase数据库中删除值; 试试这个:
//path should be like this (i guess):
let currentUserUid = FIRAuth.auth()!.currentUser!.uid
ref.child("posts")
.child(postId)
.child("peopleWhoLike")
.child(currentUserUid)
.removeValue()
或相同:
let currentUserUid = FIRAuth.auth()!.currentUser!.uid
ref.child("posts/\(postId)/peopleWhoLike/\(currentUserUid)").removeValue()
<强>更新强>
您想要删除人员密钥 - 然后您可以:
a)遍历peopleWhoLike并查找是否是用户(但请将此let currentUserUid = FIRAuth.auth()!.currentUser!.uid
放在循环之外!
//path should be like this (i guess):
let currentUserUid = FIRAuth.auth()!.currentUser!.uid
// loop and when match `person.value == currentUserUid` then:
ref.child("posts")
.child(postId)
.child("peopleWhoLike")
.child(person.key) //<-- change here
.removeValue()
b)您在查询中搜索。然后删除生成的节点。
ref.child("posts")
.child(postId)
.child("peopleWhoLike")
.startAt(currentUserId)
.endAt(currentUserId)
. [...] do something
我不知道你现在是否可以直接致电.removeValue()
。但是使用SingleEvent和快照,您可以执行snapshot.ref.removeValue()
- 在删除之前进行双重检查。但由于这会产生参考,您应该直接致电.removeValue()
ref.child("posts")
.child(postId)
.child("peopleWhoLike")
.startAt(currentUserId)
.endAt(currentUserId)
.removeValue()
注意:此搜索的时间比直接路径长
请参阅此处查询的文档:
https://firebase.googleblog.com/2013/10/queries-part-1-common-sql-queries.html#byemail
https://firebase.google.com/docs/database/ios/read-and-write#delete_data
注意:
我建议您使用userUid
作为密钥进行保存,因为您只需要一个在线人员来删除(请参阅我的第一个代码片段,您不需要从peopleWhoLike
获取所有数据)和值只有1或你可以保存当前日期(然后你知道什么时候喜欢)