我有一个React组件,该组件通过axios.get调用提取JSON数据,然后使用以下函数映射嵌入式对象:
axios.get('MasterData.json').then(response => {
const fullTree = response.data.graph.tree;
const resultTree = Object.keys(fullTree).map(key => ({
...fullTree[key],
id: key
}));
这将产生以下结果:
{5bd356cc-5ee6-49a0-ab68-65cbf0209105: Array(6), id: "5bd356cc-5ee6-49a0- ab68-65cbf0209105"}
这很好,但是我需要在上面输出的整个嵌套数组(Array(6))上添加一个“端口:”标签,以便我可以对其进行映射。对您有所帮助。