当数据存在时,Swift firebase 快照返回 null
Posted
技术标签:
【中文标题】当数据存在时,Swift firebase 快照返回 null【英文标题】:Swift firebase snapshot returns null when data exists 【发布时间】:2019-12-11 10:45:13 【问题描述】:我试图简单地从我的 firebase 数据库中获取所有通知,这些通知的子值等于我的 postId。我知道它存在的事实,如果我尝试几次,它最终会返回快照。这可能是什么问题?
let ref = Database.database().reference().child("notification").child(postUserId).queryOrdered(byChild: postId).queryEqual(toValue: postId)
ref.observeSingleEvent(of: .value) (snapshot) in
print(snapshot.value)
【问题讨论】:
【参考方案1】:改变这个:
let ref = Database.database().reference().child("notification").child(postUserId).queryOrdered(byChild: postId).queryEqual(toValue: postId)
进入这个:
let ref = Database.database().reference().child("notification").child(postUserId).queryOrdered(byChild: "postId").queryEqual(toValue: postId)
在查询中为postId
添加引号
【讨论】:
好收获。 OP,请记住,您的代码(以及此答案)只会查询 JnHYOR... 的父节点中的节点。如果这是你的意图,那么你已经有了这个答案。如果您想查询与 JnHYOR... 处于同一父级的节点,它将不起作用,您将需要深度查询或非规范化数据。以上是关于当数据存在时,Swift firebase 快照返回 null的主要内容,如果未能解决你的问题,请参考以下文章
当 Firebase 中的数据发生变化时,Swift CollectionView.reload 数据不起作用?