我正在尝试将动态内容下载为pdf文件。 pdf正在生成但没有内容,甚至没有简单的文本(当我用它测试时)。
因为我需要大量的数据,我需要计算并发送参数而不刷新页面,所以我通过Ajax请求来完成它。
$("#download_pdf").click(function() {
report_type = $("#report_type").val();
start_date = $("#start_date").val();
end_date = $("#end_date").val();
date_type = $("#date_type").val();
$.ajax({
data: { report_type: report_type, start_date: start_date, end_date: end_date, date_type: date_type },
url: '/reports/generate_pdf.pdf',
success: function(data) {
var blob=new Blob([data]);
var link=document.createElement('a');
link.href=window.URL.createObjectURL(blob);
link.download="Report_"+new Date()+".pdf";
link.click();
console.log("pdf printed");
}
});
});
这是控制器中的ruby代码:
def generate_pdf
@results = get_report_result_by_datetype(params[:report_type], params[:start_date], params[:end_date], params[:date_type])
@type = params[:report_type].to_i
@start_date = params[:start_date]
@end_date = params[:end_date]
respond_to do |format|
format.html
format.pdf do
render pdf: "report",
layout: 'pdf_layout',
template: 'reports/generate_pdf.html.erb',
encoding: 'UTF8',
print_media_type: true,
disposition: 'attachment',
page_size: 'letter',
orientation: 'landscape',
lowquality: 'false',
debug: true
end
end
end
我提取的数据没有问题。
注意:我注意到的最奇怪的事情是,当计算出的数组很小时,生成的pdf有一个页面,如果它很大,生成的pdf会显示多个页面。
如果有人指出我出错了,我真的很感激。
先谢谢!!
答案 0 :(得分:0)
虽然我不知道如何修复你的wicked_pdf
代码,但我可以使用gem prawn
推荐以下内容(这不是特定于rails的,并从等式中删除了一些Rails魔法):
format.pdf do
pdf_path = Rails.root.join("tmp", "my_file_name.pdf")
template_path = Rails.root.join("app", "views", "reports", "generate_pdf.html.erb")
this = binding
Prawn::Document.generate(pdf_path) do
text Erb.new(template_path).result(this)
end
render file: pdf_path
end
如果它不起作用,实际上没有测试过它。