I am trying to display this data in a FlatList.
JavaScript
x
17
17
1
Array [
2
Object {
3
"-N1gqvHXUi2LLGdtIumv": Object {
4
"Message": "Aeaaeaea",
5
"Message_CreatedAt": 1652167522975,
6
"Message_by_Email": "vvvv@test.com",
7
"Message_by_ID": "DgGfooQIMQQ1rs5xlmmSKCSTrKA2",
8
},
9
"-N1hB3A_Q7-K75UbvPSM": Object {
10
"Message": "Yyoo",
11
"Message_CreatedAt": 1652173063182,
12
"Message_by_Email": "vvvjugu@test.com",
13
"Message_by_ID": "DgGfooQIMQQ1rs5xlmmSKCSTrKA2",
14
},
15
},
16
]
17
My data looks like this, its multiple objects in a single object within an array, and each object has multiple unique Ids how can I read the data.
My FlatList code
JavaScript
1
2
1
<FlatList data={data} renderItem={(Item) => <Text>{Item.item. Message}</Text>}
2
Here the problem is, FlatList is considering the main object and not the children, how can I access and render the children in a Flatlist and how can I access the unique Id.
Advertisement
Answer
you can loop over, every single element, and then. de-structure it and combine the key with the body.
JavaScript
1
5
1
const data = Onsnapshot.forEach((childSnapshot) => {
2
const childKey = childSnapshot.key;
3
const childData = childSnapshot.val();
4
console.log({ childKey, childData });}
5
then you can you this data in FlatList