嗨,我在搞乱rails,rails内置了一种方法,可以将十进制数转换为货币。我可以在视图中更改它,但我想将它内化到应用程序中,以便我可以节省维护费用。
<span class="price"><%= product.price %></span>
在我的索引模板中,我有这个并且可以像这样将其更改为美元:
<span class="price"><%= number_to_currency(product.price) %></span>
我确实发现有几个是将其更改为欧元的 rails API 很棒:
number_to_currency(1234567890.506, :locale => :fr) #this will change it euros/france
现在有谁知道我在哪里可以获得所有不同区域的列表?还有货币?特别是南非(ZAR)??