Lodash

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

“Util” Methods

_.propertyOf(object)

_.property的反相版本。 这个方法创建的函数返回给定 path 在object上的值。

添加版本

3.0.0

参数

  1. object (Object): 要检索的对象。

返回

(Function): 返回新的函数。

例子

var array = [0, 1, 2],
    object = { 'a': array, 'b': array, 'c': array };
 
_.map(['a[2]', 'c[0]'], _.propertyOf(object));
// => [2, 0]
 
_.map([['a', '2'], ['c', '0']], _.propertyOf(object));
// => [2, 0]

数组 Array

集合 Collection

日期 Date

函数 Function

Lang

数学 Math

数字 Number

对象 Object

Seq

字符串 String

实用函数 Util

Properties

Methods