我正在使用“active_shipping”宝石。当我使用带有以下行的 .rb 文件时
puts res.rates.sort_by(&:price).collect
{|rate| [rate.service_name,
(@bank.get_rate(res.rate_estimates[0].currency,:USD)
* (rate.price).to_f/100).round(2)]},
我得到以下输出:
但是,当我在 .html.erb 文件中使用同一行时
<%= res.rates.sort_by(&:price).collect
{|rate| [rate.service_name,
(@bank.get_rate(res.rate_estimates[0].currency,:USD)
* (rate.price).to_f/100).round(2)]}%>,
在我看来,我得到以下输出:
有人可以帮我解决这个问题。如何在 .html.erb 文件中正确显示文本。谢谢你。