我想通过Firebase在我的React-Native App上显示所有数据,但我无法做到

时间:2018-12-08 12:17:42

标签: javascript react-native firebase-realtime-database

我的数据以这种格式存储:

1

我想在屏幕上显示它,但是我不知道在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等。

0 个答案:

没有答案