智能 GWT 开发者控制台

发布于 2024-10-03 18:20:05 字数 302 浏览 2 评论 0原文

大家好 我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

红墙和绿瓦 2024-10-10 18:20:05

需要仔细检查的一件事是,您是否将 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.

烟柳画桥 2024-10-10 18:20:05

由于您是从 GWT 代码运行它,我建议您使用包装器

SC.showConsole();

如果所有继承都已就位,那应该可以工作

Since you're running it from GWT code, I would suggest you to use the wrapper

SC.showConsole();

If all the inherits are in place, that should work

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文