我正在运行控制器操作"保存"按下视图的保存按钮。 "帖子"动作重定向到" print_pdf"然后通过prawn呈现pdf的动作。问题是保存按钮保持禁用状态。您无法按下按钮,但视图中的其他控件仍可正常工作。将保存按钮恢复为启用状态的唯一方法是单击浏览器"刷新"。我已经尝试了redirect_to:back和各种其他黑客但最终出错了。每个控制器操作不能执行多个重定向。任何想法如何启用保存按钮或为什么它保持/导致禁用?请。
#view
<%= form_for(@pdf_report_run) do |f| %>
<div> class="some_class">
<%= f.submit("Save", class: 'btn btn-primary') %>
#controller
def create
format.html { redirect_to print_pdf(format: 'pdf') }
end
def print_pdf
@self = self
respond_to do |format|
format.pdf {render layout: false}
end
end
# file print_pdf.pdf
# this contains the view the controller will render
pdf = Prawn::Document.new
...
end
# the line below is the last line that gets ran (last line of the controller's view)
@self.send_data pdf, filename: 'file_name.pdf', type: 'application/pdf'
# i've tried redirect_to and render here but won't allow another
答案 0 :(得分:0)
这是一个Rails 5功能,要解决这个问题,这是一个快速入侵
不使用<%= f.submit("Save", class: 'btn btn-primary') %>
,而是使用此
<%= button_tag 'Save', class: 'btn btn-primary' %>
希望有所帮助!