Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个login.jsp包含 ExtJS 代码的页面。
login.jsp
当我在 Eclipse 中单击“预览”选项卡时,它可以正常工作并且我可以看到页面的输出。
但是,当我在服务器上运行项目时,我什么也看不到,只有一个空白页。这是如何引起的,我该如何解决?
我不确定这个问题现在是否有效,但仍然......我会尽力回答
这可能是因为您所有的变量都在 Javascript 中。Extjs 将在客户端运行
Javascript 在客户端执行,因此 Eclipse 页面中不显示任何变量值。
如果您想检查 javascript 变量,请使用 firebug。
如果您的代码是 JSP 代码(在 scriptlet <% %> 内),那么您应该能够看到它。