I have stuff with Ruby on Rails 3
I try this simple code
def index
flash[:notice] = "ok"
respond_to do |format|
format.html # index.html.erb
end
end
it does not work
NoMethodError in DashboardsController#index
undefined method `flash' for #<ActionDispatch::Request:0x7fee9329a9d0>
When I try
redirect_to :some_in, :notice => "ok"
in other place (in some_controller.rb) and then print this :notice in .erb I have same error, undefined method `flash'
I'm stuck on this. I used google to search for it but it does not help.
The
flash[:notice]
will only appear after aredirect_to
or arender
(although you will needflash.now[:notice]
).The flash is there to provide feedback to the user on the status of an action that is taken by the user. Just rendering an index typically does not fall into this category as it is only displaying data, not showing the result of a user taking an action.
As an example:
In this case the flash will appear on the Post Show view only if the post has been saved directly.