服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

_.find(collection, predicate=_.identity, fromIndex=0)

迭代集合的元素,返回第一个元素谓词,返回truthy。 谓词用三个参数调用:(value,index | key,collection)。

初始

0.1.0

参数
  1. collection (Array | Object):要检查的集合。
  2. [predicate=_.identity] (Function):每次迭代调用的函数。
  3. [fromIndex=0] (number):从中搜索的索引。
返回

(*):返回匹配的元素,否则返回undefined

var users = [
  { 'user': 'barney',  'age': 36, 'active': true },

  { 'user': 'fred',    'age': 40, 'active': false },

  { 'user': 'pebbles', 'age': 1,  'active': true }
];
 
_.find(users, function(o) { return o.age < 40; });
// => object for 'barney'
 
// The `_.matches` iteratee shorthand.
_.find(users, { 'age': 1, 'active': true });
// => object for 'pebbles'
 
// The `_.matchesProperty` iteratee shorthand.
_.find(users, ['active', false]);
// => object for 'fred'
 
// The `_.property` iteratee shorthand.
_.find(users, 'active');
// => object for 'barney'