我对我非常简单的应用程序只有两个观点:
app/views/layouts/alpha.html.erb
app/views/layouts/beta.html.erb
我有相应的'他们的coffeescript文件:
app/assets/javascripts/alpha.js.coffee #-> console.log 'hi, im from alpha'
app/assets/javascripts/beta.js.coffee #-> console.log 'hi, im from beta'
然而,在visting上我在我的控制台中没有收到任何消息并且访问测试版我在控制台中没有收到任何消息。如何自动加载这些文件?
答案 0 :(得分:0)
只需添加以下行:
对于 alpha.html.erb:
在布局的底部添加:
<%= javascript_include_tag "alpha" %>
beta.html.erb
也是如此<%= javascript_include_tag "beta" %>
这应该可以解决问题。