我一直在尝试在flash通知中添加一个变量,当post创建时会出现#{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

我也尝试过将@particients作为变量,但是,除了消息中的实际“{@particients}”之外,我什么也没有得到。

最佳答案

我想您在参与者表格中填写邮件,请尝试:

   email = params[:participant][:mail]

""而不是''来写

关于ruby-on-rails - Rails-在Flash通知中传递变量,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15382306/

10-08 22:37