gpt4 book ai didi

javascript - 使用开始和结束索引以及单个 where 子句从 firebase 数据库中检索数组

转载 作者:太空狗 更新时间:2023-10-29 14:47:31 26 4
gpt4 key购买 nike

我有这样的 Firebase 数据库结构:

enter image description here

我想从索引 2 到 5 中获取语言为英语的记录。

  FirebaseDatabase.getInstance()
.getReference("data").orderByChild("language").startAt("English").endAt("English");

它给出所有记录而不是语言英语。

应该执行什么查询来检索具有单个 where 子句和开始和结束索引或响应数组长度的数据?

最佳答案

这是不可能的。 Firebase 查询只能对单个属性或键有条件。

我通过将数据结构更改为 enter image description here 找到了解决此问题的方法

然后以不同的方式查询不同的语言。

 FirebaseDatabase.getInstance()
.getReference().child("English").orderByKey().startAt("4").limitToFirst(2);

FirebaseDatabase.getInstance()
.getReference().child("Hindi").orderByKey().startAt("2").limitToFirst(3);

关于javascript - 使用开始和结束索引以及单个 where 子句从 firebase 数据库中检索数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38291408/

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