我一直想在後期的時候用#{variable}
Rails的 - 通過可變閃光燈通知
被創建,但我必須失去了一些東西,因爲我收到的唯一消息是出現在閃光燈的通知中加一個變量「# {變量}」。
這是我的控制器:
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可變藏漢了,不過,我沒有得到任何東西,但實際的「#{@參與者}」在郵件中。
啊,這是的 「」,而不是 '' ---- =)謝謝 – Philip 2013-03-13 10:17:32
沒問題,是嗎?很高興我可以幫助:) – Zippie 2013-03-13 10:18:24
是的,它是=)而只是參數[:電子郵件]沒有工作,但@參與者。電子郵件沒有=) – Philip 2013-03-13 10:29:02