gpt4 book ai didi

javascript - ImmutableJS 如何获取对象内部的值?

转载 作者:行者123 更新时间:2023-12-01 02:28:15 24 4
gpt4 key购买 nike

我有这个不可变映射,我需要获取属性名称: enter image description here

如果我这样做 retrospective.get('users') 我可以进入用户内部,但是如果我这样做 retrospective.getIn(['users', 'name']) 不起作用...我如何访问属性 name

最佳答案

它不起作用,因为users是一个数组。所以你必须提供这样的索引

retrospective.getIn(['users', 0, 'name'])

更新:

获取所有名称

retrospective.get('users').map(user => user.get('name'))

关于javascript - ImmutableJS 如何获取对象内部的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48546697/

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