我一直在尝试在创建帖子时出现的 Flash 通知中添加一个变量#{variable}
但我一定遗漏了一些东西,因为我收到的唯一消息是“#{variable}”。
这是我的控制器:
def create
@participant = Participant.new(params[:participant])
respond_to do |format|
if @participant.save
mail = params[:email]
format.html { redirect_to @participant, notice: 'Thanks, We will be sending out instructions to: #{mail}' }
format.json { render json: @participant, status: :created, location: @participant }
else
format.html { render action: "new" }
format.json { render json: @participant.errors, status: :unprocessable_entity }
end
end
end
我也一直在尝试将@participants 作为变量,但是除了消息中的实际“#{@participants}”之外,我什么也没得到。