服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

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

创建从初始删除的排除元素的一部分array。元素被丢弃,直到 predicate返回falsey。谓词用三个参数调用:(value,index,array)

初始

3.0.0

参数
  1. array (Array):要查询的数组。
  2. [predicate=_.identity] (Function):每次迭代调用的函数。
返回

(数组):返回部分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']