Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I thought every time you do a flash[:notice]="Message" it would add it to the array which would then get displayed during the view but the following just keeps the last flash:

flash[:notice] = "Message 1"
flash[:notice] = "Message 2"

Now I realize it's just a simple hash with a key (I think :)) but is there a better way to do multiple flashes than the following:

flash[:notice] = "Message 1<br />"
flash[:notice] << "Message 2"

Thanks.

Josh

share|improve this question

4 Answers

up vote 18 down vote accepted

The flash message can really be anything you want, so you could do something like this:

flash[:notice] = ["Message 1"]
flash[:notice] << "Message 2"

And then in your views, output it as

<%= flash[:notice].join("<br>") %>

Or whatever you prefer.

Whether that technique is easier than other solutions is determined by your own preferences.

share|improve this answer
Good enough for me, thanks! – Josh Pinter Mar 15 '10 at 17:42
1  
does not seem to work with rails 3… – dStulle Dec 13 '11 at 16:35

I usually add such methods to my ApplicationHelper:

def flash_message(type, text)
    flash[type] ||= []
    flash[type] << text
end

And

def render_flash
  rendered = []
  flash.each do |type, messages|
    messages.each do |m|
      rendered << render(:partial => 'partials/flash', :locals => {:type => type, :message => m}) unless m.blank?
    end
  end
  rendered.join('<br/>')
end

And after it is very easy to use them:

You can write something like:

flash_message :notice, 'text1'
flash_message :notice, 'text2'
flash_message :error, 'text3'

in your controller.

And just add this line to your layout:

<%= render_flash %>
share|improve this answer
Thanks Victor, that's a more thorough answer. I suppose one can make it as robust as needed. I'm still a little surprised this isn't built into the core - seems like an obvious requirement (as I type this I have three 'flash'-like notifications coming from Stack Overflow (i.e. new badge, associate my account, etc.) ;) – Josh Pinter Mar 16 '10 at 20:01

I think the idea built into the framework is that every message you stick into flash is over-writeable. You give each message a unique key so you can change or overwrite it.

If you need another message, don't call it ":notice." Call each something unique. Then to render the flash messages, loop through whatever is in the hash.

If this doesn't work for you, consider whether you actually need to simplify your UI.

share|improve this answer

Although I agree with Jonathan in that the UI might need some simplification, there are instances where you might want to display multiple messages for the same key.

As a result, I have created a gem that (should) make it easy to deal with multiple flash messages in the same key and their rendering in the view.

GitHub: flash-dance

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.