我可以使用 Firebug 来显示应用程序的对象吗?

Can I use Firebug to display objects of an app?

我对JavaScript不是很熟悉。为了理解(Firefox)应用程序中的一些代码,我想知道是否有一种方法可以显示某些对象的内容"in vivo",即以交互方式,而不是写console.log() 在 app.js 中并每次都重新启动浏览器。

您可以在 DOM panel or while debugging within the Watch side panel of the Script panel 内显示应用程序的对象。只需展开对象树即可。

请注意 Firebug stops working once multi-process Firefox is enabled, so you're better off by switching to the Firefox DevTools(and/or 其他浏览器的开发者工具),它们提供类似的功能。