firebase 查询如何从子项中检索两个特定值
Posted
技术标签:
【中文标题】firebase 查询如何从子项中检索两个特定值【英文标题】:firebase query how can i retrieve two specific values from child 【发布时间】:2021-01-09 01:15:18 【问题描述】:我使用 recyclerview 来检索聊天消息,我想知道是否有方法可以检索两个不同的值,我的意思是这样的:
FirebaseRecyclerOptions<enchat> options =
new FirebaseRecyclerOptions.Builder<enchat>()
.setQuery(
mChatDatabase.orderByChild("state").equalTo("sent")
&& mChatDatabase.orderByChild("state").equalTo("received"),
enchat.class)
.build();
【问题讨论】:
【参考方案1】:无法将两个值传递给条件。 Firebase 实时数据库不支持这种类型的 OR 条件。
另见:
Query based on multiple where clauses in Firebase ios - OR query in Firebase常见的解决方法是:
执行两个查询并将结果合并到您的应用程序代码中。但在这种情况下,您将无法使用 FirebaseUI 中的适配器。
执行范围查询,但这仅在received
和sent
之间没有state
值时才有效。如果是这种情况,查询可能是:
mChatDatabase.orderByChild("state").startAt("received").endAt("sent")
当state
为received
或sent
时添加一个额外的属性并过滤:
mChatDatabase.orderByChild("stateIsReceivedOrSent").equalTo(true)
【讨论】:
以上是关于firebase 查询如何从子项中检索两个特定值的主要内容,如果未能解决你的问题,请参考以下文章
如何使用随机键从 Firebase 数据库中检索子项到 Android 的回收站视图中?
如何为具有特定子子值的子项检索 Firebase DatabaseReference?