LoginSignup
4
3

More than 5 years have passed since last update.

複雑な namespace を持つ Rails アプリケーションで new と edit で form を共有したいとき

Posted at

通常、以下のように書きますけど、

<%= form_for @hoge do |f| %>
  …
<% end %>

たとえば @hogeFuga::Hoge なクラスのインスタンスだったとしたら、 Rails が自動で form に設定するURLは hoge_path になるので、そんな URL ないよと Route Error が表示されます。

このようなときには以下のようにします。

<%= form_for [:fuga, @hoge] do |f| %>
  …
<% end %>

参考

ActionView::Helpers::FormHelper

4
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3