gpt4 book ai didi

javascript - item 对象的 Backbone where 方法

转载 作者:行者123 更新时间:2023-11-28 07:10:01 25 4
gpt4 key购买 nike

下面是示例 JSON 数据

"items": [{
"id": "18",
"attributes": [{
"identifier": "Style",
"value": "peacock"
}, {
"identifier": "Size",
"value": "L"
}]
},
{
"id": "300438",
"attributes": [{
"identifier": "Style",
"value": "peacock"
}, {
"identifier": "Size",
"value": "M"
}]
}]

我需要获取项目 ID,其中样式 = 孔雀且尺寸 = L。我如何使用主干来做到这一点?

我制作了一个像这样的集合

var itemsCollection = new IEA.Collection(itemsData)

这里有所有的项目。

最佳答案

underscore.js不支持嵌套对象的过滤,可以使用filter和where函数的组合

filteredItems = itemsCollection.filter(function(item) {
return _.where(item.get("attributes"), {
"identifier": "Style",
"value": "peacock"
}).length > 0 &&
_.where(item.get("attributes"), {
"identifier": "Size",
"value": "M"
}).length > 0;
});

关于javascript - item 对象的 Backbone where 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31401132/

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