我有这样的形式:
<%= simple_form_for @category do |f| %>
<%= f.input :name %>
<%= f.input :description %>
<%= f.input :parent_id, collection: @board.subtree, include_blank: false %>
<%= f.button :submit %>
<% end %>
@category
是的实例,Board
因此这:submit
会尝试create
从BoardsController
. 而不是它,我想create
从CategoriesController
.
我怎样才能做到这一点?