In response i get this king of data, here in data object there is various items but there key are kind of common so how can i get that data and add in my categories list.
JavaScript
x
8
1
{
2
"99": "Venues",
3
"100": "Party Supplies",
4
"101": "Entertainment",
5
"102": "Desserts",
6
"103": "Catering"
7
}
8
here, how i tried to set the data in my list.
JavaScript
1
7
1
const dataItem = data.data;
2
const newList = [];
3
newList.push({item: dataItem[99]});
4
newList.push({item: dataItem[100]});
5
newList.push({item: dataItem[101]});
6
setList(newList);
7
but when i don’t have the proper name of key then how can i add it to my list? ex. sometimes i get the key like…
JavaScript
1
8
1
{
2
"S99": "Venues",
3
"SDF100": "Party Supplies",
4
"CF101": "Entertainment",
5
"VF102": "Desserts",
6
"CFCV103": "Catering"
7
}
8
So, how can i set the data in list without knowing the item key.
Advertisement
Answer
You can get key and value both by using following code
JavaScript
1
6
1
for (var key in data.data) {
2
console.log(key); // This will return a key, in your case it will be S99, SDF100...
3
console.log(JSON_Obj[key]); // This will return value for that key.
4
newList.push({item: data.data[key]});
5
}
6
from this you can add values in your list