android – Firebase查询数据

android – Firebase查询数据,第1张

概述{ "random_key 1" : { "id": 0, "text": "This is text" }, "random_key 2" : { "id": 1, "text": "This is text" }} 如果我像这样存储我的数据,并且我想获得id等于0的节点.我该怎么做? 以上是问题的孩子,这是root的孩子. 在您的情况下,您必须
{  "random_key 1" : {    "ID": 0,"text": "This is text"  },"random_key 2" : {    "ID": 1,"text": "This is text"  }}

如果我像这样存储我的数据,并且我想获得ID等于0的节点.我该怎么做?

以上是问题的孩子,这是root的孩子.

解决方法 在您的情况下,您必须设置如下查询

DatabaseReference reference = FirebaseDatabase.getInstance().getReference();    query query = reference.child("issue").orderByChild("ID").equalTo(0);    query.addListenerForSingleValueEvent(new ValueEventListener() {        @OverrIDe        public voID onDataChange(DataSnapshot dataSnapshot) {            if (dataSnapshot.exists()) {                // dataSnapshot is the "issue" node with all children with ID 0                for (DataSnapshot issue : dataSnapshot.getChildren()) {                    // do something with the indivIDual "issues"                }            }        }        @OverrIDe        public voID onCancelled(DatabaseError databaseError) {        }    });
总结

以上是内存溢出为你收集整理的android – Firebase查询数据全部内容,希望文章能够帮你解决android – Firebase查询数据所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1121520.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存