我在收听数据时有一些奇怪的结果。
对于节点'allstudents'上的3个子节点,onchildadded方法为第0个元素返回null,但是将第0个pushid分配给第1个元素,依此类推。
当我调整时,ID(-Kjw7V4jSphLBYs7Z_wx
)onChildChanged被触发为null但是,在FB-console onChildChange上调整ID(-Kjw7bRY7AkJnGpOGJEw
)会返回differt ID(-Kjw7YchGZLamQmWTTc5
)为什么?
logcat的
E/String: onChildAdded:null
E/String: onChildAdded:-Kjw7V4jSphLBYs7Z_wx
E/String: onChildAdded:-Kjw7YchGZLamQmWTTc5
E/String: onChildChanged:-Kjw7YchGZLamQmWTTc5
E/String: onChildChanged:-Kjw7V4jSphLBYs7Z_wx
E/String: onChildChanged:null
规则:
"teachers": {
"$teacherID": {
".read": "auth != null && auth.uid == $teacherID",
".write": "auth != null && auth.uid == $teacherID",
".validate":"root.child('teacherids').child(newData.child('tID').val()).exists()"
}
},
// teachers can r/w student profiles, and the students can also r/w their own profile
"students": {
"$studentID": {
".read": "auth != null && (root.child('teachers').child(auth.uid).exists() || auth.uid == $studentID)",
".write": "auth != null && (root.child('teachers').child(auth.uid).exists() || auth.uid == $studentID)",
".validate":"root.child('studentids').child(newData.child('rollnr').val()).exists()"
}
},
"allstudents":{
".read": "auth != null && (root.child('teachers').child(auth.uid).exists() || root.child('students').child(auth.uid).exists() )",
".write": "auth != null && (root.child('teachers').child(auth.uid).exists() || root.child('students').child(auth.uid).exists() )"
}
将数据添加到节点
mDatabase.child("allstudents").push().setValue(allstudentnode);
转发/收听数据
mDatabase.child("allstudents").addChildEventListener(new ChildEventListener() {
@Override
public void onChildAdded(DataSnapshot dataSnapshot, String s) {
Log.e(TAG, "onChildAdded:"+s);
}
@Override
public void onChildChanged(DataSnapshot dataSnapshot, String s) {
Log.e(TAG, "onChildChanged:"+s);
}
@Override
public void onChildRemoved(DataSnapshot dataSnapshot) {
Log.e(TAG, "onChildRemoved:"+dataSnapshot.toString());
}
@Override
public void onChildMoved(DataSnapshot dataSnapshot, String s) {
Log.e(TAG, "onChildMoved:"+s);
}
@Override
public void onCancelled(DatabaseError databaseError) {
Log.e(TAG, "onCancelled:"+databaseError.toString());
}
});
答案 0 :(得分:1)
要在代码中使用有效数据,您需要从dataSnapshot
对象中获取数据,而不是使用s
方法中的字符串onChildAdded()
。
正如您在official doc中看到的那样,String s
实际上代表String previousChildName
,这就是您在代码中使用前一个孩子的方式。
希望它有所帮助。
答案 1 :(得分:0)
试试这个
mDatabase= FirebaseDatabase.getInstance();
mDatabase.getReference("allstudents").addValueEventListener(new
ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
for(DataSnapshot dst : dataSnapshot.getChildren()){
String key = dst.getKey();
Log.e(TAG, "onChildAdded:"+key);
}
}
@Override
public void onCancelled(DatabaseError error) {
}
});