私はそのようなオブジェクトを持っています:
> Object
> Rett@site.com: Array[100]
> pel4@gmail.com: Array[4]
> 0
id : 132
selected : true
> 1
id : 51
selected : false
等..
_.filter()
アンダースコアを使用して、選択した=== trueのアイテムのみを返すにはどうすればよいですか?
でレイヤーに移動する必要はありませんでした_.filter()
。何かのようなもの
var stuff = _.filter(me.collections, function(item) {
return item[0].selected === true;
});
ありがとうございました