Lodash _.filter

2021-09-24 10:03 更新

_.filter(collection, [predicate=_.identity])

遍歷 collection(集合)元素,返回 predicate(斷言函數(shù))返回真值 的所有元素的數(shù)組。 predicate(斷言函數(shù))調(diào)用三個(gè)參數(shù):(value, index|key, collection)。Note: Unlike_.remove, this method returns a new array.

添加版本

0.1.0

參數(shù)

  1. collection (Array|Object): 一個(gè)用來(lái)迭代的集合。
  2. [predicate=_.identity] (Array|Function|Object|string): 每次迭代調(diào)用的函數(shù)。

返回

(Array): 返回一個(gè)新的過(guò)濾后的數(shù)組。

例子

var users = [  { 'user': 'barney', 'age': 36, 'active': true },  { 'user': 'fred',   'age': 40, 'active': false }];
 _.filter(users, function(o) { return !o.active; });
// => objects for ['fred'] 
// The `_.matches` iteratee shorthand.
_.filter(users, { 'age': 36, 'active': true });
// => objects for ['barney']
 // The `_.matchesProperty` iteratee shorthand.
_.filter(users, ['active', false]);
// => objects for ['fred']
 // The `_.property` iteratee shorthand.
_.filter(users, 'active');
// => objects for ['barney']


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)