I would like to display the response in the repeating group in cooperation with an external API.
But the returned value is a dictionary, and I can’t think of how to display it.
For example,
{
"test": {
"0": {
"text": "Hello",
"date": "2021/10/01"
},
"1": {
"text": "Hi",
"date": "2021/10/02"
},
"2": {
"text": "Bye!",
"date": "2021/10/02"
},
"3": {
"text": "World",
"date": "2021/10/02"
}
}
}
I want to display the contents in the “test” of these dictionaries like a list.