Rails创建操作在应该呈现新操作时重定向到索引

时间:2010-10-14 21:13:41

标签: ruby-on-rails rest routing

如果我提交了一个有错误的新用户表单,它会重定向到索引页面,然后在其上呈现新页面。在控制器中,我指定它应该只呈现新操作,以便用户可以查看/修复他们的错误并重新提交。有什么明显的东西我不见了吗?

这是我的控制器代码中的创建操作:

def create
  @user = User.new(params[:user])
  @user.role = "owner"

  if @user.save
    flash[:notice] = "Registration successful!"
  else
    flash.now[:notice] = "You have errors!"
    render :new
  end
end

1 个答案:

答案 0 :(得分:0)

我想你想说

redirect_to :action => 'new'