module Flash

Ruby on Rails 2.2.3

Since v2.2.3

Available in: v2.2.3 v2.3.18 v3.0.20 v3.1.12 v3.2.22.5 v4.0.13 v4.1.16 v4.2.9 v5.2.8.1 v6.0.6 v6.1.7.10 v7.0.10 v7.1.6 v7.2.3 v8.0.4 v8.1.2

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] = "Successfully created" before redirecting to a display action that can then expose the flash to its template. Actually, that exposure is automatically done. Example:

class WeblogController < ActionController::Base
  def create
    # save post
    flash[:notice] = "Successfully created post"
    redirect_to :action => "display", :params => { :id => post.id }
  end

  def display
    # doesn't need to assign the flash notice to the template, that's done automatically
  end
end

display.erb
  <% if flash[:notice] %><div class="notice"><%= flash[:notice] %></div><% end %>

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.

Namespace

Classes

Methods (defined here)

Used by

Included by (1)

Type at least 2 characters to search.

↑↓ navigate · open · esc close