gpt4 book ai didi

underscore.js - 如何使用 underscore.js 获取基于嵌套属性的唯一数组

转载 作者:行者123 更新时间:2023-12-02 05:28:26 27 4
gpt4 key购买 nike

我有一个像这样的 json 数组:

myArray=[{ a:1,
b:[{c:"x",d:"y"}, {c:"r", d:"s"}...]
},
{ a:2,
b:[c:"p",d:"q"}, {c:"x", d:"s"}...]
}
...
]

是否可以使用 underscore.js 获取具有唯一值“c”的 myArray 的子集?

最佳答案

应该这样做:

_.chain(myArray)
.pluck("b")
.flatten()
.pluck("c")
.unique()
.value()

关于underscore.js - 如何使用 underscore.js 获取基于嵌套属性的唯一数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19758840/

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