Ruby on Rails
Креветка PDF
Поиск…
Расширенный пример
Это расширенный подход с примером
class FundsController < ApplicationController
def index
@funds = Fund.all_funds(current_user)
end
def show
@fund = Fund.find(params[:id])
respond_to do |format|
format.html
format.pdf do
pdf = FundsPdf.new(@fund, view_context)
send_data pdf.render, filename:
"fund_#{@fund.created_at.strftime("%d/%m/%Y")}.pdf",
type: "application/pdf"
end
end
end
end
Я над кодом у нас есть эта строка FundsPdf.new(@fund, view_context)
. Здесь мы инициализируем класс FundsPdf с экземпляром @fund и view_context для использования вспомогательных методов в FundsPdf. FundsPdf wuld выглядят так
class FundPdf < Prawn::Document
def initialize(fund, view)
super()
@fund = fund
@view = view
upper_half
lower_half
end
def upper_half
logopath = "#{Rails.root}/app/assets/images/logo.png"
image logopath, :width => 197, :height => 91
move_down 10
draw_text "Receipt", :at => [220, 575], size: 22
move_down 80
text "Hello #{@invoice.customer.profile.first_name.capitalize},"
end
def thanks_message
move_down 15
text "Thank you for your order.Print this receipt as
confirmation of your order.",
:indent_paragraphs => 40, :size => 13
end
end
Это один из лучших подходов к созданию PDF-файлов с использованием уроков креветок.
Основной пример
Вам нужно добавить Gem и PDF MIME: Введите внутри mime_types.rb, поскольку нам нужно уведомить рельсы о типе PDF-типа.
После этого мы можем сгенерировать Pdf с креветкой следующими основными способами
Это основное назначение
pdf = Prawn::Document.new
pdf.text "Hello World"
pdf.render_file "assignment.pdf"
Мы можем сделать это с помощью неявного блока
Prawn::Document.generate("implicit.pdf") do
text "Hello World"
end
С явным блоком
Prawn::Document.generate("explicit.pdf") do |pdf|
pdf.text "Hello World"
end
Modified text is an extract of the original Stack Overflow Documentation
Лицензировано согласно CC BY-SA 3.0
Не связан с Stack Overflow