我有一个像这样的对象:
> Object
> Rett@site.com: Array[100]
> pel4@gmail.com: Array[4]
> 0
id : 132
selected : true
> 1
id : 51
selected : false
ETC..
如何使用下划线_.filter()
仅返回选择 === true 的项目?
我从来不需要使用_.filter()
. 就像是
var stuff = _.filter(me.collections, function(item) {
return item[0].selected === true;
});
谢谢