我已经搭建了Things元素:
script/generate scaffold wip/thing name:string
并在视图中获得了一些无效的函数调用,例如:
<td><%= link_to 'Edit', edit_thing_path(thing) %></td>
提出此错误:
ActionView::TemplateError (undefined method `edit_thing_path' for #<ActionView::Base:0xb5c00944>) on line #11 of app/views/wip/things/index.html.erb:
8: <tr>
9: <td><%=h thing.name %></td>
10: <td><%= link_to 'Show', thing %></td>
11: <td><%= link_to 'Edit', edit_thing_path(thing) %></td>
12: <td><%= link_to 'Destroy', thing, :confirm => 'Are you sure?', :method => :delete %></td>
13: </tr>
14: <% end %>
该功能有什么用?它在哪里?它是某种自动化的东西还是我需要实现它(如果是的话 - 应该去哪里?)
我在具有命名空间的路由中定义了资源:
map.namespace :wip do |wip|
wip.resources :things
end
rake路线给了我这个:
wip_things GET /wip/things(.:format) {:action=>"index", :controller=>"wip/things"}
POST /wip/things(.:format) {:action=>"create", :controller=>"wip/things"}
new_wip_thing GET /wip/things/new(.:format) {:action=>"new", :controller=>"wip/things"}
edit_wip_thing GET /wip/things/:id/edit(.:format) {:action=>"edit", :controller=>"wip/things"}
wip_thing GET /wip/things/:id(.:format)
我认为那些名字(wip_thing,new_wip_thing)是正确的名字,但它仍然给我这个错误
感谢。
答案 0 :(得分:2)
此方法来自routes.rb文件。如果你有一个资源:事物定义,所有这个方法都在你的控制器/视图中定义。
如果您符合以下条件,请检查config/routes.rb
文件:
map.resources :things
如果您没有此资源,则不会定义此方法。
在Ruby on Rails指南上查看此资源:http://guides.rubyonrails.org/routing.html
您可以使用rake任务了解所有这些路线:
rake routes
答案 1 :(得分:0)
rake routes
但应该有后缀_path:
<%= link_to 'Edit', edit_wip_thing_path(@thing) %>