_.find();
_.find(list, predicate, [context]);
在list中逐项查找,返回第一个通过predicate迭代函数真值检测的元素值。找到匹配元素立即返回,不会遍历整个list
_.filter()
_.filter(list, predicate, [context]);
遍历数组中的每个值,返回包含predicate迭代函数真值得所有元素值;
_.reject();
_.reject(list, predicate, [context]);
返回list中没有匹配predicate的元素集合,与filter相反
_.where()
_.where(list, properties)
遍历数组list的每一个值,返回一个数组,这个数组的每一项都包含properties所列出的键值对。
_.findWhere();
_findWhere(list, pro);
遍历list中得每一个值,返回匹配pro所列出键值对的第一个值
Underscore.js find filter reject where where
时间: 2024-10-17 05:20:05