例如我现在 model 定义为 UserAccount,controller 代码为:
class UsersController < ApplicationController
def home
end
def new
@user = UserAccount.new
end
end
这时在 new.html.erb 中用
<%= form_for @user do |f| %>
...
<% end %>
时,就会出现
undefined method `user_accounts_path'
的错误。