我正在尝试将 pdf 发送给用户。例如,如果用户在 /products?category_id=3 中,他必须获取类别 id 为 3 的产品的报告,而不是所有报告。我找不到传递参数的方法。我怎样才能做到这一点 ?
products_controller
def index
@products Product.where("category_id = ?", params[:category_id)
end
def reporter
kit = PDFKit.new(render_to_string(:action => "products/index", :layout => "report"))
send_data(kit.to_pdf, :type => :pdf)
end
我的看法是这样的
<% @products.each do |product| %>
<%= product.name %>
<% end %>
<%= link_to "Download(PDF)", reporter_path, :method => :post %>