智能 GWT 开发者控制台
大家好 我在 windows xp 系统上使用 smart gwt 2.3 pro 版本和 Mozilla。 我对其进行了测试应用程序&它正在成功运行。 现在我想为此应用程序使用开发人员控制台。 我的 gwt.xml 编码如下。
<inherits name="com.smartgwt.tools.SmartGwtTools"/>
现在编译并运行后我正在写 javascript:isc.showConsole() 到我的浏览器。 但它是不是什么都不做。 我不知道开发者控制台还能做什么。 提前致谢
Hello all
I am using smart gwt 2.3 pro version with Mozilla on windows xp system.
I made Test Application on it & it is running successfully.
Now I want to use developer console for this application.
I gwt.xml coding is like below.
<inherits name="com.smartgwt.tools.SmartGwtTools"/>
Now After compiling and running it I am writing
javascript:isc.showConsole()
to my browser.
But is it doing nothing.
I am not getting what to do else for developer console.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
需要仔细检查的一件事是,您是否将 javascript:isc.showConsole() 放在运行 GWT 应用程序的窗口的地址栏中?
您需要将应用程序的 URL 替换为 javascript:isc.showConsole() 并按 Enter 键。
One thing to double check, did you put the javascript:isc.showConsole() in the address bar of the window where your GWT app was running?
You need to replace the URL of your app with javascript:isc.showConsole() and hit enter.
由于您是从 GWT 代码运行它,我建议您使用包装器
如果所有继承都已就位,那应该可以工作
Since you're running it from GWT code, I would suggest you to use the wrapper
If all the inherits are in place, that should work