gpt4 book ai didi

arrays - 如何在 native react 中将json数据与数组映射

转载 作者:行者123 更新时间:2023-12-04 06:13:56 27 4
gpt4 key购买 nike

我在 native react 中有这样的数组

 const data = [
{ key: 1, label: 'Service1'},
{ key: 2, label: 'Service2' },
{ key: 3, label: 'Service3' },
{ key: 4, label: 'Service4' },
{ key: 5, label: 'Service4' },
];

和json数据:
 "services": [
{
"id": 1,
"name": "Hotels",
},
{
"id": 2,
"name": "Embassies",
},
]

如何 map id 键和名称标签???

最佳答案

您要填写您的const data来自 JSON 的值,对吗?

尝试这个:

var jsonData = {
"services": [
{ "id": 1, "name": "Hotels" },
{ "id": 2, "name": "Embassies" }
]
};

var data = jsonData.services.map(function(item) {
return {
key: item.id,
label: item.name
};
});

console.log(data);

关于arrays - 如何在 native react 中将json数据与数组映射,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38642411/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com