LoginSignup
1
0

More than 3 years have passed since last update.

Rails6 flash表示をする

Posted at

目的

  • flashの表示で若干詰まったことがあったため実施方法をまとめる

書き方の例

  • 下記に処理された時に「削除されました」と表示される時の書き方をまとめる。
  • 任意のコントローファイルに下記の一文を記載する。下記が実行された時にflashが表示される。

    flash[:notice] = "削除されました"
    
  • application.html.erbファイルの任意の場所に下記の処理を追加する。

    <%= flash[:notice] %>
    
1
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
1
0