简体   繁体   中英

how to display a firebase collection with react native?

How to display a collection with Firebase. I tried to display a return but it doesn't work so I tried to integrate my arrays in another array except that it rempis it by

Now I get my values in my foreach:

在此处输入图像描述

Now I don't get my values in my foreach:

在此处输入图像描述

Try something like this:

snapshot.then(snap => {
    const tableau = []
    snap.forEach(doc => {
     tableau.push({id: doc.id, ... doc.data()})
    })
    // set state here
    // setTableauData([...tableau])
})

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM