邪恶的PDF:整个文档的动态高度

时间:2016-08-08 02:41:29

标签: ruby-on-rails-4 wicked-pdf

我正在使用Wicked_PDF GEM。是否可以将文档高度设置为" AUTO"或者什么,那么它会根据订单中创建的订单项的数量而改变吗?

如果没有,你可以引导我去另一个工具或创业板帮我这么做吗?

Orders.rb

  def show
    respond_to do |format|
      format.html
      format.pdf do
        render  pdf: @order.id.to_s,
        disposition: 'inline',
        layout: "reciept",
        template: "orders/showPDF.html.erb",
        show_as_html: params.key?('debug'), 
        page_height: 160,
        page_width: 80,
        margin:  {  top: 10,
                    bottom: 15,
                    left: 5,
                    right: 5 }
      end
    end
  end

0 个答案:

没有答案