Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道如何在时间和现金上添加尾随零。
我有这个:
0h1 0.0 $
但我想像这样得到它:
0h01 0.00 $
对于货币,使用number_to_currency。它应该是这样的
number_to_currency(1.4,格式:“%n %u”)
对于时间,请使用strftime。
你在这里想要的是:
'%.2f' % your_thing
Rails 中有一些用于数字的辅助方法。看看http://api.rubyonrails.org/classes/ActionView/Helpers/NumberHelper.html(特别是 number_with_precision 在你的情况下可能很有趣)