服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

_.hasIn(object, path)

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

版本

4.0.0

参数
  1. object (Object):要查询的对象。
  2. path (数组|字符串):要检查的路径。
返回

(boolean):返回true是否path存在,否则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