我正在使用方法number_to_currency而且我一直收到错误。这是我尝试过的:
= number_to_currency(233)
和
= number_to_currency(233, locale: :en)
他们都提出错误:
can't convert Symbol into Integer
为什么会发生这种情况?
答案 0 :(得分:0)
显然,问题出在我的en.yml文件中。 number_to_currency方法使用yml文件中的“number”路径进行转换,但我的错误。我从here获取了正确的yml格式。
感谢所有帮助者