Lodash - property 方法



语法

_.property(path)

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

参数

  • path (Array|string) − 要获取的属性的 path。

输出

  • (函数) − 返回新的访问器函数。

示例

var _ = require('lodash');
var objects = [
   { 'a': { 'b': 2 } },
   { 'a': { 'b': 1 } }
];
 
var result = _.map(objects, _.property('a.b'));
console.log(result); 
result = _.map(_.sortBy(objects, _.property(['a', 'b'])), 'a.b');
console.log(result);

将以上程序保存在 tester.js 中。运行以下命令以执行此程序。

命令

\>node tester.js

输出

[ 2, 1 ]
[ 1, 2 ]
lodash_util.htm
广告