我正在使用虾宝石,我的 show.pdf.prawn 中有这个
pdf.text "Customer: #{@customer.name}", :size => 20, :style => :bold, :align => :center
pdf.move_down 10
billing = @customer.billing_addresses.map do |item|
[
'Billing Address', "#{item.billing_address}",
'City', "#{item.city}",
'Pincode', "#{item.pincode}",
'Country', "#{item.country.country_name}",
'State', "#{item.state.state_name}",
'Tel. Work', "#{item.tel_work}",
]
end
pdf.table billing,
:border_width => 0,
:font_size => 11,
:position => :center,
:column_widths => { 0 => 200, 1 => 300},
:row_widths => { 0 => 500, 1 => 500}
我得到这个错误
对虾::错误::CannotFit
似乎是什么问题?我该如何解决?我浏览了对虾错误的文档,上面写着“当要求对虾将某些东西放入一个太小的盒子时引发无法适应”我无法理解……我认为问题是一切都排成一排……如何使其显示在单独的行中???,任何指导都会有所帮助,在此先感谢。!!