1

基本上我已经实现了一个编辑器(比如说Editor_A)入口点。在 gwt 中一切正常。

Editor_B然后我实现了另一个具有不同小部件布局的入口点。现在,我想禁用入口点 Editor_A,并让 Editor_B 起来。

我修改了以下内容:

在 Editor.html 中

<script language="javascript" src="com.mycompany.Editor_A/com.mycompany.Editor_A.nocache.js"></script>改为<script language="javascript" src="com.mycompany.Editor_B/com.mycompany.Editor_B.nocache.js"></script>

在 Editor.gwt.xml 中

<entry-point class="com.mycompany.Editor_A"/>改为<entry-point class="com.mycompany.Editor_B"/>

但是,我不认为上述更改是正确的。Editor_A 不见了,但 Editor_B 没有起来,网页中什么也没有。

任何人都可以帮助我吗?

4

1 回答 1

3

如果您只想更改入口点,则不必更改引导脚本 (*.nocache.js) 的路径。更改 Editor.gwt.xml 中的入口点类应该足够了。

除非您在 Editor.gwt.xml 中指定了“rename-to”属性,否则引导脚本路径应该与 GWT 模块的完全限定名称匹配(即 Editor.gwt.xml 的完整路径,但没有结尾的“.gwt”。 xml”)。根据您提供的信息,我认为应该是:

<script language="javascript" src="com.mycompany.Editor/com.mycompany.Editor.nocache.js"></script>
于 2012-10-09T17:56:55.980 回答