0

@manufacturers配列をpdfにレンダリングする必要がありますが、ビュー内のリンクをクリックするだけでレンダリングできます...これでそのようなコードができました

def index
    @manufacturers = Manufacturer.all


    respond_to do |format|
      format.html # index.html.erb
      format.json { render json: @manufacturers }
      format.pdf { render :layout => false }
    end
  end

Webには多くの例がありますが、明確で実際の例は見つかりませんでした...配列@manufacturersを使用してa4 pdfテーブルで行うのはどれほど簡単ですか?

4

2 に答える 2

1

エビに加えて、エビレールプラグインを使用してPDFをテンプレートとしてレンダリングするのに役立ててください。

プラグインについてはhttps://github.com/prior/prawntoを、使用方法についてはhttp://railscasts.com/episodes/153-pdfs-with-prawnを参照してください。

于 2012-11-27T23:14:47.710 に答える
0

[注:レポートジェムは現在、レターサイズの用紙でのみ生成されます。A4のパッチを歓迎します!]

エビだけでなくXLSXとCSVを使用してPDFを生成するレポートgemを使用できます。

# a fake Manufacturer class - you probably have an ActiveRecord model
Manufacturer = Struct.new(:name, :gsa)

require 'report'
class ManufacturerReport < Report
  table 'Manufacturers' do
    head do
      row 'Manufacturer report'
    end
    body do
      rows :manufacturers
      column 'Name', :name
      column 'GSA?', :gsa
    end
  end
  # you would want this so that you can pass in an array
  # attr_reader :manufacturers
  # def initialize(manufacturers)
  #   @manufacturers = manufacturers
  # end
  def manufacturers
    [
      Manufacturer.new('Ford', true),
      Manufacturer.new('Fischer', false),
      Manufacturer.new('Tesla', nil),
    ]
  end
end

を呼び出すreport.pdf.pathと、PDFがtmpディレクトリに生成されます。

report = ManufacturerReport.new
puts report.pdf.path #=> /tmp/185051406_Report__Pdf.pdf
puts report.xlsx.path #=> /tmp/185050541_Report__Xlsx.xlsx

次のようにコントローラーで実行できます。

@manufacturers = Manufacturer.all
respond_to do |format|
  format.html # index.html.erb
  format.json { render json: @manufacturers }
  format.pdf do
    report = ManufacturerReport.new(@manufacturers) # using the commented-out code
    send_file report.pdf.path, :type => 'application/pdf', :disposition => 'attachment', :filename => 'ManufacturersReport.pdf'
    # tmp files are periodically cleaned up by the operating system, but if you want to be extra clean you can call
    # report.cleanup
    # but this may remove the tmp files before apache/nginx/etc. finishes delivering the file
  end
end

最終結果:

PDF

PDF

XLSX

xlsx

XLSXには自動フィルターが自動的に追加されていることに注意してください。

于 2013-04-04T00:05:57.043 に答える