0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

レンダーとリダイレクト

Last updated at Posted at 2020-05-08

レンダーとリダイレクトの違い

レンダー

一覧画面や新規登録画面を表示させる際のように、アクションに続けてビューを表示すること。
アクションの実行→ビューの表示

リダイレクト

登録処理後に一覧画面に遷移する際のようにアクションを処理した直後にビューを表示せず、
別のURLに案内する動きのこと。
アクションの実行→ブラウザがリクエストし直す→アクションの実行→ビューの表示

つまり

・render     : 表示させるviewファイルを指定
・redirect_to   : URL(HTTPリクエストメソッド)を指定

詳細

render と redirect の違い

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?