合并 GWT 生成的文件

发布于 2024-10-08 06:24:56 字数 478 浏览 5 评论 0原文

我正在尝试从 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 技术交流群。

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

发布评论

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

评论(2

糖果控 2024-10-15 06:24:56

使用

<collapse-all-properties />
<add-linker name="sso" />

在您的 ProjectName.gwt.xml 文件中 。这样所有的排列都被加入到一个 JavaScript 文件中。

Use

<collapse-all-properties />
<add-linker name="sso" />

in your ProjectName.gwt.xml file. This way all permutations are joined in a single JavaScript file.

岁月打碎记忆 2024-10-15 06:24:56

这是可能的,但仅限于一个不同的编译。例如,以下代码为 Firefox 编译一个文件:

<set-property name="user.agent" value="gecko"/> 
<add-linker name="sso"/>

由于 GWT 生成特定于浏览器的版本,这意味着编译后的文件仅支持一种浏览器。如果您需要其他浏览器,请更改user.agent并重新编译。请注意,如果您确实想要支持多个浏览器,则需要向用户提供正确的版本,如果您使用正常的编译过程,GWT 就会为您做这件事。所以我不确定这是否是你真正想要的。

It's possible but only for one single distinct compilation. For example, the following compiles one single file for Firefox:

<set-property name="user.agent" value="gecko"/> 
<add-linker name="sso"/>

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.

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