I have the data that I get from firebase.
{
"plyers": {
"plyer1": {
"name": {
"citys": {
"city1": {
"name": "hello"
},
"city2": {
"name": "red"
}
}
}
},
"plyer2": {
"name": {
"citys": {
"city1": {
"name": "gray"
}
}
}
}
}
}
I wrote something like this for testing.
I am able to get the data.
And here I can’t figure out how to process the data. I’ve tried every possible extension. Because my data contains lists, the extensions fail. Or I can’t figure out exactly how to use them, for example, to get the list under players. I would appreciate any help possible.