前提・実現したいこと
ここに質問の内容を詳しく書いてください。
flashを使おうとするとエラーが発生します。
どうすればエラーが出ずに使えますか?
発生している問題・エラーメッセージ
エラーメッセージ NoMethodError in SessionController#index undefined method `[]=' for nil:NilClass Extracted source (around line #4): 2 3 4 5 6 before_action :get_latest_article def get_latest_article flash[:notice] = "a" end end
該当のソースコード
ソースコード class ApplicationController < ActionController::Base before_action :get_latest_article def get_latest_article flash[:notice] = "a" end end
ちなみにhtml は
<!DOCTYPE html> <html> <head> <title>SessionTest</title> <%= csrf_meta_tags %> <%= csp_meta_tag %></head> <div class="flash"> <% if flash[:notice] %> <p><%= flash[:notice] %></p> <% end %> </div> <body> <%= yield %> </body> </html> です<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %> <%= javascript_pack_tag 'application', 'data-turbolinks-track': 'reload' %>
試したこと
ここに問題に対して試したことを記載してください。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
こちら再現がしないのですが、SessionControllerのコードも書いていただけますでしょうか?
あなたの回答
tips
プレビュー