javascript“stockwatcher.nocache.js”文件名的名称在哪里定义?例如,如何将其更改为“stockwatcher1.nocache.js”?
谢谢。
已编译文件夹 ( stockwatcher/
) 和已编译 js 文件 ( stockwatcher.nocache.js
) 的名称基于模块文件的包和名称(因此com/acme/project/Project.gwt.xml
将com.acme.project.Project.cache.js
在com.acme.project.Project/
目录中创建),或基于该模块文件中标记的rename-to
属性。<module>
例如,如果这是您的模块文件:
<?xml version="1.0" encoding="UTF-8"?>
<module rename-to='stockwatcher'>
<!-- Inherit the core Web Toolkit stuff. -->
<inherits name='com.google.gwt.user.User'/>
...
然后输出文件将在stockwatcher/
目录中,主脚本将是stockwatcher.nocache.js
. 如果您将其更改为
<?xml version="1.0" encoding="UTF-8"?>
<module rename-to='stockwatcher1'>
<!-- Inherit the core Web Toolkit stuff. -->
<inherits name='com.google.gwt.user.User'/>
...
然后重新编译或启动开发模式,您现在将拥有一个stockwatcher1/
目录和一个stockwatcher1.nocache.js
文件。