Rails转换为货币问题

时间:2011-03-04 11:33:31

标签: ruby-on-rails

这是我用来显示“房产”价格的代码:

<%= number_to_currency(@property.price) %>

我想要做的是将此number_to_currency转换的结果除以4以获得每周价格(而不是每月价格)

感谢您的帮助

1 个答案:

答案 0 :(得分:3)

<%= number_to_currency(@property.price/4) %>

这不起作用吗?