RUBY ON RAILS redirect_to 別のアクションを実行
redirect_toメソッドをアクション内で記述。
別のアクションを実行したり、ビューに遷移ができる。
どういうことかというと
何かの処理のあと、強制的にindex.html.erbのviewを表示したい、
つまりindex.htmlにとばしたい。
というときは
書き方
redirect_to action: :index
使用例
controller.rbで
def move_to_index
redirect_to action: :index indexアクションを強制的に実行している
end
と記述する