在我的 index.html.erb 我有
<%= link_to 'Edit', edit_order_path(order) %>
每当我尝试编辑订单内容时,都会出现以下错误:
NoMethodError in Order#index
undefined method `edit_order_path' for #<ActionView::Base:0x13f4aeb>
我怎样才能克服它?
在我的 index.html.erb 我有
<%= link_to 'Edit', edit_order_path(order) %>
每当我尝试编辑订单内容时,都会出现以下错误:
NoMethodError in Order#index
undefined method `edit_order_path' for #<ActionView::Base:0x13f4aeb>
我怎样才能克服它?