【发布时间】:2016-09-24 06:12:21
【问题描述】:
我有一个 AJAX 调用
$.ajax({
data: {
'inward_gate_id': document.getElementById("inward_gate_id_lorry_no").value,
'called_by': "GENERATEPDF"
},
dataType: "script",
method: 'get',
success: function (data) {
window.location.reload();
}
});
在我的控制器中
send_data pdf.render, :filename => "report.pdf", :type=>"application/pdf", :x_sendfile => true
登录终端如下
Rendering text template
Rendered text template (0.0ms)
Sent data report.pdf (0.5ms)
但是没有提示下载pdf
【问题讨论】:
标签: ruby-on-rails ruby-on-rails-5 prawn