相当于 Javascript 中的 Python 目录

当我从解释器编写 Python 代码时,我可以键入 dir() 来获得在当前范围内定义的名称列表.当我使用 firebug、chrome 控制台等交互式控制台从浏览器开发 Javascript 代码时,如何以编程方式获得相同的信息?

when I write Python code from the interpreter I can type dir() to have a list of names defined in the current scope. How can achieve to have the same information, programmatically, when I develop Javascript code from a browser using an interactive console like firebug, chrome console, etc?

推荐答案

Object中有keys方法,例如:

Object.keys(object)

但这仅返回对象自己的属性和方法.
要列出对象的所有属性和方法,我知道 2 种可能性:

But this return object's own properties and methods only.
To list all properties and methods of an object I know 2 possibilities:

  1. console.dir(object) Firefox 控制台中的方法和
  2. 谷歌浏览器开发工具中的dir(object)方法.
  1. console.dir(object) method in firebug console for Firefox and
  2. dir(object) method in Google Chrome development tools.

相关文章