Lodash _.findKey

2021-09-24 10:38 更新

_.findKey(object, [predicate=_.identity])

這個方法類似_.find 。 除了它返回最先被 predicate 判斷為真值的元素 key,而不是元素本身。

添加版本

1.1.0

參數(shù)

  1. object (Object): 需要檢索的對象。
  2. [predicate=_.identity] (Function): 每次迭代時調(diào)用的函數(shù)。

返回

(*): 返回匹配的 key,否則返回 undefined。

例子

var users = {  'barney':  { 'age': 36, 'active': true },  
'fred':    { 'age': 40, 'active': false },  'pebbles': { 'age': 1,  'active': true }};
 _.findKey(users, function(o) { return o.age < 40; });
// => 'barney' 
(iteration order is not guaranteed) 
// The `_.matches` iteratee shorthand.
_.findKey(users, { 'age': 1, 'active': true });
// => 'pebbles' 
// The `_.matchesProperty` iteratee shorthand.
_.findKey(users, ['active', false]);
// => 'fred' 
// The `_.property` iteratee shorthand.
_.findKey(users, 'active');
// => 'barney'


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

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號