Lodash

是一个一致性、模块化、高性能的 JavaScript 实用工具库。

“Util” Methods

_.property(path)

创建一个返回给定对象的 path 的值的函数。

添加版本

2.4.0

参数

  1. path (Array|string): 要得到值的属性路径。

返回

(Function): 返回新的函数。

例子

var objects = [
  { 'a': { 'b'2 } },
  { 'a': { 'b'1 } }
];
 
_.map(objects, _.property('a.b'));
// => [2, 1]
 
_.map(_.sortBy(objects, _.property(['a', 'b'])), 'a.b');
// => [1, 2]

数组 Array

集合 Collection

日期 Date

函数 Function

Lang

数学 Math

数字 Number

对象 Object

Seq

字符串 String

实用函数 Util

Properties

Methods