Type:
Class
Constants:
KEY : 'action_dispatch.request.flash_hash'.freeze

The flash provides a way to pass temporary objects between actions. Anything you place in the flash will be exposed to the very next action and then cleared out. This is a great way of doing notices and alerts, such as a create action that sets flash[:notice] = "Post successfully created" before redirecting to a display action that can then expose the flash to its template. Actually, that exposure is automatically done.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class PostsController < ActionController::Base
  def create
    # save post
    flash[:notice] = "Post successfully created"
    redirect_to @post
  end
 
  def show
    # doesn't need to assign the flash notice to the template, that's done automatically
  end
end
 
show.html.erb
  <% if flash[:notice] %>
    <div class="notice"><%= flash[:notice] %></div>
  <% end %>

Since the notice and alert keys are a common idiom, convenience accessors are available:

1
2
flash.alert = "You must be logged in"
flash.notice = "Post successfully created"

This example just places a string in the flash, but you can put any object in there. And of course, you can put as many as you like at a time too. Just remember: They'll be gone by the time the next action has been performed.

See docs on the FlashHash class for more details about the flash.

initialize_copy
  • References/Ruby on Rails/Rails/Classes/ActionDispatch/ActionDispatch::Flash/ActionDispatch::Flash::FlashHash

initialize_copy(other) Instance Public methods

2025-01-10 15:47:30
each
  • References/Ruby on Rails/Rails/Classes/ActionDispatch/ActionDispatch::Flash/ActionDispatch::Flash::FlashHash

each(&block) Instance Public methods

2025-01-10 15:47:30
empty?
  • References/Ruby on Rails/Rails/Classes/ActionDispatch/ActionDispatch::Flash/ActionDispatch::Flash::FlashHash

empty?() Instance Public methods

2025-01-10 15:47:30
alert
  • References/Ruby on Rails/Rails/Classes/ActionDispatch/ActionDispatch::Flash/ActionDispatch::Flash::FlashHash

alert() Instance Public methods Convenience accessor for flash[:alert]

2025-01-10 15:47:30
from_session_value
  • References/Ruby on Rails/Rails/Classes/ActionDispatch/ActionDispatch::Flash/ActionDispatch::Flash::FlashHash

from_session_value(value) Class Public methods

2025-01-10 15:47:30
now
  • References/Ruby on Rails/Rails/Classes/ActionDispatch/ActionDispatch::Flash/ActionDispatch::Flash::FlashHash

now() Instance Public methods Sets a flash that will not be available to the

2025-01-10 15:47:30
delete
  • References/Ruby on Rails/Rails/Classes/ActionDispatch/ActionDispatch::Flash/ActionDispatch::Flash::FlashHash

delete(key) Instance Public methods

2025-01-10 15:47:30
to_hash
  • References/Ruby on Rails/Rails/Classes/ActionDispatch/ActionDispatch::Flash/ActionDispatch::Flash::FlashHash

to_hash() Instance Public methods

2025-01-10 15:47:30
notice=
  • References/Ruby on Rails/Rails/Classes/ActionDispatch/ActionDispatch::Flash/ActionDispatch::Flash::FlashHash

notice=(message) Instance Public methods Convenience accessor for flash[:notice]=

2025-01-10 15:47:30
now_is_loaded?
  • References/Ruby on Rails/Rails/Classes/ActionDispatch/ActionDispatch::Flash/ActionDispatch::Flash::FlashHash

now_is_loaded?() Instance Protected methods

2025-01-10 15:47:30