Rails 3 - 多种货币

发布于 2024-11-27 15:08:07 字数 334 浏览 0 评论 0原文

如果我这样做:

number_to_currency(100,:locale=>'en-GB')

我希望得到这样的结果:

£100.00

但相反,如果我传递区域设置 :en、'fr-FR' 或其他内容,我会得到

$100

同样的结果。

Rails 是否有基于区域设置的默认货币列表,还是我必须自己为地球上的每个国家设置 I18 映射?

任何帮助表示赞赏。

托宾

If I do this:

number_to_currency(100,:locale=>'en-GB')

I'd expect to get something like this:

£100.00

But instead I'm getting

$100

This is the same if I pass in the locale :en, 'fr-FR' or whatever.

Does Rails have a default list of currencies based on locale, or do I have to setup the I18 mappings for every country on the planet myself?

Any help appreciated.

Tobin

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

朦胧时间 2024-12-04 15:08:07

在区域设置文件中,货币单位是通过

number:
  currency:
    unit:    "$"

You have to do it myself 定义的。这可能会有所帮助:

https://github.com /rails/rails/blob/master/actionpack/lib/action_view/locale/en.yml

In the locale file, the currency unit is defined via

number:
  currency:
    unit:    "$"

You have to do it yourself. This may help:

https://github.com/rails/rails/blob/master/actionpack/lib/action_view/locale/en.yml

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文