gpt4 book ai didi

ruby-on-rails - 钱轨 gem : How to make a select list for all currencies?

转载 作者:数据小太阳 更新时间:2023-10-29 07:43:11 25 4
gpt4 key购买 nike

我正在使用 money-rails gem并希望在我的 View 中显示不同货币的列表,但我现在拥有的代码无法正常工作。

我有我的 Price 模型和字段 in_centscurrency:

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>

为什么?

附言

我想显示 ISO 代码和名称,例如 United States Dollar (USD)

最佳答案

不确定这是最好的解决方案,但我做了一个这样的助手:

  def currency_codes
currencies = []
Money::Currency.table.values.each do |currency|
currencies = currencies + [[currency[:name] + ' (' + currency[:iso_code] + ')', currency[:iso_code]]]
end
currencies
end

关于ruby-on-rails - 钱轨 gem : How to make a select list for all currencies?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25335528/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com