1

I am very new to ExtJS and still going through the Docs in Sencha site. I've seen a lot of examples in ExtJS4 using console.log() for debugging. However I couldn't figure out how to deal with console.log().

I am using Aptana Studio 3 for development, and I don't think Aptana can run console.log() (correct me if im wrong). So we need to debug it in Firebug? Then how to incorporate script files like ext-all.js, ext-debug.js into Firebug?

4

2 回答 2

5

是的,console.log()你的脚本输出到你正在使用的任何浏览器的开发工具的控制台窗口(例如,Firefox 的 Firebug)。浏览器开发者工具从浏览器所在的位置获取脚本文件;即,但是您将它们加载到您的网页中。

于 2012-07-03T15:42:46.157 回答
1

我建议你使用谷歌浏览器。它有一个非常好的开发工具。除了 ExtJs,在进行任何开发时,请使用 ext-all-dev.js 文件而不是 ext-all.js 或 ext-all-debug.js。这将非常有帮助。检查此链接以获取更多详细信息。

debugger;您也可以通过简单地使用javascript 文件中的命令来设置断点。但要完成这项工作,请确保 firebug/developer 工具正在运行。

希望这可以帮助。

于 2013-06-18T18:40:26.877 回答