Heroku * .js不是预编译错误

时间:2012-06-25 23:28:39

标签: ruby-on-rails ruby-on-rails-3 heroku asset-pipeline cedar

我在Heroku Cedar堆栈上使用Rails并且在编译资产时没有抛出任何问题,但后来我得到500内部服务器错误:

2012-06-25T23:22:59+00:00 app[web.1]: ActionView::Template::Error (bootstrap-datepicker.js isn't precompiled):

知道可能导致这种情况的原因是什么?这是我包含的javascript文件(除了我在本地下载)https://github.com/eternicode/bootstrap-datepicker/blob/master/js/bootstrap-datepicker.js

我将它包含在我的application.html.erb中,如下所示:

<%= javascript_include_tag "bootstrap-datepicker" %>

是不是因为它不是coffeescript文件?任何帮助表示赞赏!

1 个答案:

答案 0 :(得分:20)

我明白了。我必须将它添加到config.assets.precompile

中的production.rb

在production.rb中我将它添加到我的config.assets.precompile:

config.assets.precompile += %w( jquery.dataTables.min.js jquery-ui-1.8.21.custom.min.js jquery-ui-1.8.21.custom.css bootstrap-datepicker.js fullcalendar.js)