Underscore.js 对象 property 方法

返回 Underscore.js 更新对象


语法

_.property(path)

property() 返回一个函数,该函数将返回任何传入对象的指定属性。 path 可以指定为简单 key(键),或者指定为对象键或数组索引的数组,用于深度属性提取。

示例

var _ = require('underscore');

var student = {name: 'Sam', age: 10, class : {section : 'B'} }

// 示例 1: 
var getName = _.property('name');
console.log(getName(student));

// 示例 2: 获取 student 的 sction 字段
var getSection = _.property(['class', 'section'])
console.log(getSection(student));

上面示例运行结果如下

Underscore.js  对象 property 方法运行结果


返回 Underscore.js 更新对象

查看笔记

扫码一下
查看教程更方便