从不同孩子的Firebase检索数据列表

时间:2018-11-17 03:36:26

标签: android firebase firebase-realtime-database

我想获取两个时间戳之间所有孩子的数据。这是我要检索的数据列表。我能够获得独生子女的数据。 `

private void get_Machine_Data(){
   Query query=refpetrol.child("Data").child("Machine 1").orderByChild("timestamp").startAt(154241340395L).endAt(1542414168752L);
   query.addValueEventListener(new ValueEventListener() {
       @Override
       public void onDataChange(@NonNull DataSnapshot dataSnapshot) {
           if(dataSnapshot.exists()){
               Toast.makeText(MainActivity.this, "hi ", Toast.LENGTH_SHORT).show();
           }
           else {
               Toast.makeText(MainActivity.this, "No data", Toast.LENGTH_SHORT).show();
           }
       }

       @Override
       public void onCancelled(@NonNull DatabaseError databaseError) {

       }
   });
}`

我该怎么做?还是我必须对所有机器使用查询? enter image description here

enter image description here

0 个答案:

没有答案