当我调用控制器的index
操作时assets
,相应的index
模板使用assets
包含此行的布局:
<%= javascript_include_tag 'prototype' %>
我得到的错误是:
No route matches "/javascripts/prototype.js" with {:method=>:get}
这是我的路线文件:
ActionController::Routing::Routes.draw do |map|
map.resources :assets
map.connect ':controller/:action/:id'
map.connect ':controller/:action/:id.:format'
end
知道我在这里可能缺少什么吗?
有没有办法明确定义这个文件的路由?