我刚刚在我的应用程序中包含了一个 javascript,它将激活一个图像滑块。这是脚本:
$(function(){var scroller=$("#scroller div.innerScrollArea");var scrollerContent=scroller.children("ul");scrollerContent.children().clone().appendTo(scrollerContent);var curX=0;scrollerContent.children().each(function(){var $this=$(this);$this.css("left",curX);curX+=$this.width()});var fullW=curX/2;var viewportW=scroller.width();var controller={curSpeed:0,fullSpeed:2};var $controller=$(controller);var tweenToNewSpeed=function(newSpeed,duration){if(duration===undefined){duration=600}$controller.stop(true).animate({curSpeed:newSpeed},duration)};scroller.hover(function(){tweenToNewSpeed(0)},function(){tweenToNewSpeed(controller.fullSpeed)});var doScroll=function(){var curX=scroller.scrollLeft();var newX=curX+controller.curSpeed;if(newX>fullW*2-viewportW){newX-=fullW}scroller.scrollLeft(newX)};setInterval(doScroll,20);tweenToNewSpeed(controller.fullSpeed)});
我手动缩小了它。如果我只是将这个应用程序上传到 Heroku,它会给我一个 500 内部服务器错误。在 Heroku 日志中,我可以看到:
2013-01-02T04:50:59+00:00 app[web.1]: Completed 500 Internal Server Error in 640ms
2013-01-02T04:50:59+00:00 app[web.1]:
2013-01-02T04:50:59+00:00 app[web.1]: ActionView::Template::Error (slider.js isn't precompiled):
2013-01-02T04:50:59+00:00 app[web.1]: 1: <footer class="footer">
2013-01-02T04:50:59+00:00 app[web.1]: 2: <%= javascript_include_tag "slider" %>
2013-01-02T04:50:59+00:00 app[web.1]: 3: </footer>
因此,我通过将以下行添加到 production.rb 来添加要预编译的 javascript:
config.assets.precompile += %w( slider.js )
这样,我的应用程序已加载,但 javascript 无法正常工作。当我检查源代码时,我看到 Heroku 是如何编译我的 javascript 的:
$(function(){var a=$("#scroller div.innerScrollArea"),b=a.children("ul");b.children().clone().appendTo(b);var c=0;b.children().each(function(){var a=$(this);a.css("left",c),c+=a.width()});var d=c/2,e=a.width(),f={curSpeed:0,fullSpeed:2},g=$(f),h=function(a,b){b===undefined&&(b=600),g.stop(!0).animate({curSpeed:a},b)};a.hover(function(){h(0)},function(){h(f.fullSpeed)});var i=function(){var b=a.scrollLeft(),c=b+f.curSpeed;c>d*2-e&&(c-=d),a.scrollLeft(c)};setInterval(i,20),h(f.fullSpeed)});
一团糟。我的问题是,如何解决这个问题?我需要 heroku 来编译我的其他脚本和 css 文件。但是只排除这个文件。怎么做?