我的数据以这种格式存储:
我想在屏幕上显示它,但是我不知道在for循环中显示它来连续显示我的数据。
我的代码:
onButtonPress() {
firebase.database().ref(`/users/CV`).on('value', snapshot=> this.setState({
cv: snapshot.val()
for(DataSnapshot childKey:snapshot.getChildren()){
cv:childKey.val()
childKey.child("internship").getValue();
}
}));
firebase.database().ref('/users/CV').on('value',snapshot=>{
var childKey:snapshot.getChildren
console.log(childKey)
}
我的代码很混乱,我已经以cv状态存储了所有数据。现在我需要访问所有的孩子,例如cnic,email等。