合并 GWT 生成的文件
我正在尝试从 GWT 创建一个 JavaScript 库。 最重要的是:我想将 JavaScript 文件合并为一个。
基本上GWT生成两个文件:
[您的项目].nocache.js =>引导程序
[MD5].cache.html =>正确的(?)JavaScript API。
index.html---加载--->[Your_Project].nocache.js ----加载---->[MD5].cache。 html
我正在尝试通过以下方式改变这一点:
index.html ---加载--->everything.js
但是如何将 [Your_Project].nocache.js 和 [MD5].cache.html 合并到一个 JavaScript 文件中......?
我不确定这会是一件容易的事。
马丁·马加基安
I'm trying to create a JavaScript library from GWT.
The big deal: I want to merge the JavaScript files into one.
Basicly GWT generate two files:
[Your_Project].nocache.js => The bootstrap
[MD5].cache.html => The proper(?) JavaScript API.
index.html---load--->[Your_Project].nocache.js ----load---->[MD5].cache.html
I'm trying to change that by:
index.html ---load--->everything.js
But how to merge [Your_Project].nocache.js and [MD5].cache.html into one JavaScript file...?
I'm not sure it gonna be an easy task.
Martin Magakian
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
在您的
ProjectName.gwt.xml
文件中 。这样所有的排列都被加入到一个 JavaScript 文件中。Use
in your
ProjectName.gwt.xml
file. This way all permutations are joined in a single JavaScript file.这是可能的,但仅限于一个不同的编译。例如,以下代码为 Firefox 编译一个文件:
由于 GWT 生成特定于浏览器的版本,这意味着编译后的文件仅支持一种浏览器。如果您需要其他浏览器,请更改
user.agent
并重新编译。请注意,如果您确实想要支持多个浏览器,则需要向用户提供正确的版本,如果您使用正常的编译过程,GWT 就会为您做这件事。所以我不确定这是否是你真正想要的。It's possible but only for one single distinct compilation. For example, the following compiles one single file for Firefox:
Because GWT generates browser specific versions, this means only one browser is supported in the compiled file. If you need other browsers change the
user.agent
and compile again. Note if you do want to support multiple browsers, you need to serve the correct version to the user, something GWT does for you if you use the normal compilation process. So I'm not sure if this is what you really want.