ruby-on-rails – Heroku * .js不是预编译的错误

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Heroku * .js不是预编译的错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在Heroku雪松堆栈上使用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文件?任何帮助是赞赏!

解决方法

我想到了.我必须将其添加到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)
原文链接:https://www.f2er.com/ruby/267434.html

猜你在找的Ruby相关文章