gpt4 book ai didi

javascript - 循环遍历对象的嵌套数组

转载 作者:行者123 更新时间:2023-12-03 01:22:53 25 4
gpt4 key购买 nike

所以我有一个对象数组userEvents,我想在对象内部使用event数组。 event 数组也存储对象,我试图在其中访问 start 属性并更改它。我正在考虑嵌套 map 功能,但没有成功。我附上了 userEvents 数组的控制台日志 enter image description here

const { events } = this.props.events;
const userEvents = events

最佳答案

给你想要的

access start property

userEvents.forEach(userEvent => userEvent.events
.forEach(event => { console.log(event.start) })
)

关于javascript - 循环遍历对象的嵌套数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51687720/

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