Redirecting
redirect_to
redirect_back# 字符串
redirect_to “www.rubyonrails.org”
redirect_to “/images/screenshot.jpg”
redirect_to articles_url
# :back
redirect_to :back
# Proc
redirect_to proc { edit_post_url(@post) }
# 其它可选参数,会用到 url_for 来处理
# record 对象
redirect_to post
# Hash
redirect_to action: “show”, id: 5
redirect_to({ action: 'atom' }, alert: "Something serious happened")最后更新于