我正在使用虾 gem 生成 pdf 文档
如何将数据从 csv 解析为 pdf
我已经使用了类似这样的代码
Prawn::Document.generate("user.pdf", :page_layout => :landscape) do
exa_url = "D:/userReport.csv"
csv_data = open(exa_url).read.lines.to_a
headers = CSV.parse(csv_data[6]).first
body = CSV.parse(csv_data[7..-1].join)
table body, :headers => headers, :font_size =>10, :position=>:centere
end
我给出了一个错误,
是否有任何其他方法或其他建议来解决此问题