我所拥有的是响应 html 和 pdf 文件格式的控制器操作,如下所示:
def detail
@record = Model.find(params[:id])
respond_to do |format|
format.html # detail.html.erb
format.pdf { render :layout => false } #detail.pdf.prawn
end
end
但是当我得到文件时它带有名称:1.pdf
2.pdf
取决于params[:id]
我如何将文件名设置为myfile.pdf
- 更新 -
detail.pdf.prawn
我的文件示例
pdf.font "Helvetica"
pdf.image open("http://localhost:3000/images/myImage.png"),:position => :left,:width=>100
pdf.text "some text"
pdf.table(someData,:cell_style => { :border_width => 0.1,:border_color=> 'C1C1C1' }) do |table|
table.row(0).style :background_color => 'D3D3D3'
table.column(0..1).style(:align => :left)
table.column(2..4).style(:align => :center)
table.column(0).width = 100
table.column(1).width = 250
table.column(3..4).width = 68
table.row(2).column(0..2).borders = []
table.row(2).column(3).style(:font_style => :bold, :align => :right)
end
并且format.pdf { render :layout => false }
在控制器中呈现 de pdf 文件,其中包含以下说明detail.pdf.prawn