我喜欢 Object.getOwnPropertyNames 方法。它似乎是从 JS shell 中学习对象的有用工具。
然而,让我发疯的是 getOwnPropertyNames 似乎缺少一些(注意:在我的测试中,我正在运行 ECMA 5 实现——Google Chrome 版本 28.0.1500.95)。
这是一个例子:
> var x= []
undefined
> x.constructor
function Array() { [native code] }
> Object.getOwnPropertyNames(x)
["length"]
然而很明显,x 有很多属性!(例如https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/prototype)
> x.push
function push() { [native code] }
> x.pop
function pop() { [native code] }
谁能帮忙解释这里发生了什么?谢谢!:D
编辑:好的!我看到 getOwnPropertyNames 只获取手头对象的属性名称。有没有一种简单的方法来获取继承的属性?或者也许唯一的方法是遍历 object.constructor.prototype.__proto__?