Lodash _.dropWhile

2021-09-22 09:32 更新

_.dropWhile(array, [predicate=_.identity])

創(chuàng)建一個切片數(shù)組,去除array中從起點開始到 predicate 返回假值結(jié)束部分。predicate 會傳入3個參數(shù): (value, index, array)。

引入版本

3.0.0

參數(shù)

  1. array (Array): 要查詢的數(shù)組。
  2. [predicate=_.identity] (Function): 這個函數(shù)會在每一次迭代調(diào)用。

返回值

(Array): 返回array剩余切片。

例子

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


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

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號