我使用money-rails gem并希望在我的视图中显示不同货币的列表,但我现在的代码不起作用。
我有Price
模型以及字段in_cents
和currency
:
create_table :prices do |t|
t.integer :in_cents, default: 0, null: false
t.string :currency, default: 'USD', null: false
现在根据Money gem和Money-Rails文档,我必须做类似的事情:
class Price < ActiveRecord::Base
monetize :in_cents, as: "amount", with_model_currency: :in_cents_currency
def all_currencies(hash)
hash.keys
end
比我对简单形式gem的看法:
= f.input :currency, collection: all_currencies(Money::Currency.table)
= f.input :amount, required: false
但这给了我错误:
undefined method `all_currencies' for #<#<Class:0xd154124>:0xd15bab4>
为什么?
P.S。
我想显示ISO代码和名称United States Dollar (USD)
。
答案 0 :(得分:8)
不确定这是最好的解决方案,但是我这样做了一个帮手:
def currency_codes
currencies = []
Money::Currency.table.values.each do |currency|
currencies = currencies + [[currency[:name] + ' (' + currency[:iso_code] + ')', currency[:iso_code]]]
end
currencies
end
答案 1 :(得分:2)
你的all_currencies方法是一个实例方法,你不是在实例上调用它。
添加self.all_currencies
,然后使用Price.all_currencies
希望这有帮助
答案 2 :(得分:1)
最简单的解决方案:
= f.select :currency, Money::Currency.table