How to display a Rails flash notice upon redirect?

后端 未结 6 1254
天命终不由人
天命终不由人 2021-01-31 01:21

I have the following code in a Rails controller:

flash.now[:notice] = \'Successfully checked in\'
redirect_to check_in_path

Then in the /check_

6条回答
  •  [愿得一人]
    2021-01-31 01:58

    Or you can do it in one line.

    redirect_to check_in_path, flash: {notice: "Successfully checked in"}
    

提交回复
热议问题