6

可能重复:
使用 Google Closure Compiler 编译的 jQuery

我正在使用 jQuery,我的所有 JS 代码都在 application.js 文件中。当我使用 Google Closure 编译器(使用高级选项)编译“application.js”时,我得到一个没有错误和警告的 js 文件。但是,我无法在我的页面中使用该文件,我在页面加载时收到错误消息“TypeError: Result of expression '$("div.tile").d' [undefined] is not a function。”

我的问题是我可以编译一个使用 jQuery 的 js 文件吗?

4

3 回答 3

16

如果您通过为 jQuery 指定“extern”文件来指定您的 js 文件使用 jQuery,您也可以使用高级模式。这样,闭包编译器就不会更改 javascript 中的 jQuery 函数调用。

java -jar compiler.jar --compilation_level ADVANCED_OPTIMIZATIONS --js_output_file application.js --externs jquery-1.4.4.externs.js

你可以在这里找到一些 jQuery extern 文件: http ://code.google.com/p/closure-compiler/source/browse/trunk/contrib/externs/

于 2011-04-16T15:35:07.773 回答
8

你必须告诉 Closure 编译器什么不要优化。

我通过添加 externs_url 参数使用在线编译器( http://closure-compiler.appspot.com/home )来做到这一点。当您在在线编译器上输入代码时,它会自动附加一个与此类似的标头,但默认情况下没有 externs_url 参数。

// ==ClosureCompiler==
// @output_file_name default.js
// @compilation_level ADVANCED_OPTIMIZATIONS
// @externs_url https://closure-compiler.googlecode.com/git/contrib/externs/jquery-1.9.js
// ==/ClosureCompiler==

您可以在https://code.google.com/p/closure-compiler/source/browse/contrib/externs/查看当前可用的外部文件。他们拥有几乎所有版本的 jQuery。

要使用可下载的 Java 版本的编译器执行此操作,您只需在 cli 上传递 --externs_url 参数或下载所需的 extern 文件并使用 --externs 参数传递该文件名,就像在 Palmerlee 的回答中一样。

如果您对为什么不能只打开高级优化感兴趣,请阅读http://code.google.com/closure/compiler/docs/api-tutorial3.html

于 2011-09-03T05:39:01.507 回答
1

是的,如果您想将 jQuery 文件包含在您的其他文件中。

是的,如果您改用简单模式。

否则,没有。

于 2010-02-09T02:11:50.093 回答