Underscore.JS 属性方法
语法
_.property(path)
将下面的英文翻译成中文,不解释,保留HTML格式:
property方法返回一个函数,该函数将返回对象的指定属性。我们也可以传递嵌套属性。看下面的示例 –
示例
+标签
var _ = require('underscore');
var student = {name: 'Sam', age: 10, class : {section : 'B'} }
// Example 1: Get name of student
var getName = _.property('name');
console.log(getName(student));
// Example 2: Get section of student
var getSection = _.property(['class', 'section'])
console.log(getSection(student));
将以上程序保存在 tester.js 文件中。运行以下命令来执行此程序。
命令
>node tester.js
输出
Sam
B