Railsが私のコードにあると言い続ける構文エラーを追跡するのに非常に苦労していますが、私の人生ではそれを見ることができません! 次のエラーが表示されます。
syntax error, unexpected keyword_ensure, expecting end-of-input
ラインでrender :action => "modal", :layout => false
そして、私が何をしても、私はそれを取り除くことができません!私を助けてください!
def new
@appointment = Appointment.new
@appointment.patient = current_patient
@appointment.practice = current_practice
respond_to do |format|
if params[:layout] == 'modal'
render :action => "modal", :layout => false
else
format.html
format.json { render json: @appointment }
end
end
end