Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
<%= link_to 'Edit', edit_order_path(@order) %>
是否可以将此链接连接到 Orders 控制器的修改操作(而不是编辑操作)而不更改此语法:
edit_order_path(@order)
路线.rb:
map.edit_order "order/modify/:id" , :controller => "order" , :action => "modify" , :id => /\d+/