Redirect

如果Action不要render任何結果,而是要使用者轉向到別頁,可以使用redirect_to

·redirect_to :action =>"show", :id => @event

·redirect_to :back回到上一頁。

注意,一個Action中只能有一個render或一個redirect_to。不然你會得到一個DoubleRenderError例外錯誤。