Lodash

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

“Object” Methods

_.hasIn(object, path)

检查 path 是否是object对象的直接或继承属性。

添加版本

4.0.0

参数

  1. object (Object): 要检索的对象。
  2. path (Array|string): 要检查的路径path

返回

(boolean): 如果path存在,那么返回 true ,否则返回 false

例子

var object = _.create({ 'a': _.create({ 'b'2 }) });
 
_.hasIn(object, 'a');
// => true
 
_.hasIn(object, 'a.b');
// => true
 
_.hasIn(object, ['a', 'b']);
// => true
 
_.hasIn(object, 'b');
// => false

数组 Array

集合 Collection

日期 Date

函数 Function

Lang

数学 Math

数字 Number

对象 Object

Seq

字符串 String

实用函数 Util

Properties

Methods