number_to_currency给出“无法将符号转换为整数”错误

时间:2014-02-19 17:14:03

标签: ruby-on-rails rails-i18n

我正在使用方法number_to_currency而且我一直收到错误。这是我尝试过的:

= number_to_currency(233)

= number_to_currency(233, locale: :en)

他们都提出错误:

can't convert Symbol into Integer

为什么会发生这种情况?

1 个答案:

答案 0 :(得分:0)

显然,问题出在我的en.yml文件中。 number_to_currency方法使用yml文件中的“number”路径进行转换,但我的错误。我从here获取了正确的yml格式。

感谢所有帮助者