ruby rails3 prawn生成pdf

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ruby rails3 prawn生成pdf相关的知识,希望对你有一定的参考价值。

gem 'prawn'

// Recipie Model
def shopping_list_pdf
  shopping_list = ingredients.map do |ingredient|
      [ingredient.name, ingredient.quantity]
  end
  
  pdf = Prawn::Document.new
  pdf.table([[ "Item", "Quantity" ], *shopping_list]) do |t|
    t.header = true
    t.row_colors = [ "aaaaff", "aaffaa", "ffaaaa" ]
    t.row(0).style :background_color => '448844', :text_color => 'ffffff' t.columns(1).align = :right
    end
    pdf.render
end

// Recipie Controller
def shopping_list
  @recipe = Recipe.find(params[:id]) 
  respond_to do |format|
    format.html format.pdf do
      send_data @recipe.shopping_list_pdf,
        content_type: Mime::PDF
    end
  end
end


// Routes
resources :recipes do
  member do
    get "shopping_list"
  end
  resources :ingredients
end

以上是关于ruby rails3 prawn生成pdf的主要内容,如果未能解决你的问题,请参考以下文章

ruby 使用Prawn创建PDF / X-1a:2003文档的示例

如何在 ruby​​ 中设置 Prawn 的边距?

ruby 使用带有页眉,页脚和页码的Prawn Library创建PDF文档。

ruby 使用带有页眉,页脚和页码的Prawn Library创建PDF文档。

是否有可以将 JavaScript 插入现有 PDF 文件的 Ruby gem?

将外部 PDF 插入 Prawn 生成的文档