gpt4 book ai didi

backbone.js - Backbone 集合 : Retrieve distinct values of a collection

转载 作者:行者123 更新时间:2023-12-04 21:53:28 25 4
gpt4 key购买 nike

我有主干模型集合,并想检索某个属性的不同值

如果我已将如下数据加载到我的集合中:

[{brand:'audi',id:'1234'},
{brand:'audi',id:'3456'},
{brand:'bmw',id:'3456'}]

我现在想从系列中获得不同的品牌。结果应该是:
['audi','bmw']

看看 Backbone 和 Underscore API,我看不出有什么明显的方法可以实现这一点。
我目前的方法是使用像 jslinq 这样的库

我是否遗漏了任何明显的东西,或者有人有比 jslinq 更好的建议吗?

最佳答案

您可以使用 pluck然后使用 uniq (例如: http://jsfiddle.net/sCVyN/5/ )

采摘

A convenient version of what is perhaps the most common use-case for map: extracting a list of property values.



优衣库

Produces a duplicate-free version of the array, using === to test object equality. If you know in advance that the array is sorted, passing true for isSorted will run a much faster algorithm. If you want to compute unique items based on a transformation, pass an iterator function.

关于backbone.js - Backbone 集合 : Retrieve distinct values of a collection,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11599123/

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