使用Google Closure编译器
我正在使用 jQuery,并且我拥有所有application.js 文件中的 JS 代码。当我使用 Google Closure 编译器(使用高级选项)编译“application.js”时,我得到一个没有错误和警告的 js 文件。但是,我无法在页面中使用该文件,页面加载时出现错误,显示“TypeError: 表达式 '$("div.tile").d' [undefined] 的结果不是函数。”
我的问题是我可以编译一个使用 jQuery 的 js 文件吗?
Possible Duplicate:
jQuery compiled with Google Closure Compiler
I am using jQuery and I have all of my JS code in application.js file. When I compile "application.js" with the Google Closure compiler (using the advance options) I get a js file with no errors and warning. However, I am unable to use the file in my page, I get an error on page load which says "TypeError: Result of expression '$("div.tile").d' [undefined] is not a function."
My question is can I compile a js file which uses jQuery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您通过为 jQuery 指定“extern”文件来指定 js 文件使用 jQuery,则还可以使用高级模式。这样闭包编译器就不会改变 javascript 中的 jQuery 函数调用。
您可以在这里找到一些 jQuery extern 文件:
http://code.google.com/p/closure-compiler/source /浏览/主干/contrib/externs/
You can also use advanced mode if you specify that your js file is using jQuery by specifying an 'extern' file for jQuery. This way the closure compiler won't change your jQuery function calls inside your javascript.
You can find some of the jQuery extern files here:
http://code.google.com/p/closure-compiler/source/browse/trunk/contrib/externs/
你必须告诉闭包编译器什么不应该优化。
我使用在线编译器( http://closure-compiler.appspot.com/home )来完成此操作通过添加 externs_url 参数。当您在在线编译器上输入代码时,它会自动附加一个与此类似的标头,但默认情况下没有 externs_url 参数。
您可以在 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
You have to tell the Closure compiler what not to optimize.
I do this with online compiler( http://closure-compiler.appspot.com/home ) by adding a externs_url paramater. When You type in your code on the online compiler it will automatically append a header similar to this, but without an externs_url param by default.
You can see what extern files are currently available at https://code.google.com/p/closure-compiler/source/browse/contrib/externs/ . They have most all versions of jQuery.
To do this with the downloadable Java version of the compiler you can just pass the --externs_url paramater on the cli or download the extern file you need and pass that filename with --externs paramater like in Palmerlee's answer.
If you are interested in why you can't just turn on advanced optimizations read through http://code.google.com/closure/compiler/docs/api-tutorial3.html
是的,如果您愿意将 jQuery 文件包含在其他文件中。
是的,如果您使用简单模式。
否则,不行。
Yes, if you care to include the jQuery file in with your other file.
Yes, if you use simple mode, instead.
Otherwise, no.