我在我的应用程序中存储了一个成本。成本未在数据库中格式化。例如:00.00 保存为 0,1.00 保存为 1,40.50 保存为 40.5
我需要从数据库中读取这些值并将它们转换为美元和美分的字符串。例如:0 --> cost_dollars = "00" & cost_cents = "00", 1 --> cost_dollars = "01" & cost_cents = "00", 40.5 --> cost_dollars = "40" & cost_cents = "50" .
有没有一种简单的方法可以在 ruby on rails 中做到这一点?或者有人有这样做的代码吗?
谢谢!