ユーザーの作成が成功したとき、私は少し混乱しています。
私は電話することができます(働いています)
if @wibiya_user.save
render :edit
end
しかし、なぜ私が書くとき
if @wibiya_user.save
format.html { redirect_to edit_wibiya_user_path(@wibiya_user) }
end
ルーティング エラーが発生します。
No route matches {:action=>"edit", :controller=>"wibiya_users"}
ただし、ルートには次のものがあります。
resources :wibiya_users
...
rake routes
edit_wibiya_user GET /wibiya_users/:id/edit(.:format) wibiya_users#edit
なぜそのようなことが起こっているのですか?