服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

_.partition(collection, predicate=_.identity)

创建一个分成两组的元素数组,其中第一个包含谓词返回truthy for的元素,第二个包含predicate返回falsey的元素。 谓词用一个参数调用:(value)。

初始

3.0.0

参数
  1. collection (Array | Object):迭代的集合。
  2. [predicate=_.identity] (Function):每次迭代调用的函数。
返回

(Array):返回分组元素的数组。

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

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

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