Lodash - hasIn 方法
语法
_.hasIn(object, path)
检查路径是否为对象的直接属性或继承属性。
参数
object (对象) - 要查询的对象。
path (数组 | 字符串) - 要检查的路径。
输出
(布尔值) - 如果路径存在,则返回 true,否则返回 false。
示例
var _ = require('lodash'); var object = _.create({ 'a': _.create({ 'b': 2 }) }); var result = _.hasIn(object, 'a'); console.log(result); result = _.hasIn(object, ['a','b']); console.log(result);
将上述程序另存到 tester.js中。运行以下命令以执行该程序。
命令
\>node tester.js
输出
true true
lodash_object.htm
广告