- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
当我使用“exchange_to (: CLP) .to_i”方法时,它在 OrdersController#create 中给我错误 Money::Bank::GoogleCurrencyFetchError货币::银行::GoogleCurrencyFetchError
# class OrdersController < ApplicationController
def create
@buying_methods = Order.buying_methods.keys
@shipping_type_clients = Order.shipping_type_clients.keys
@order = Order.new(order_params)
@order.dollar = Money.new(100, "USD").exchange_to(:CLP).to_i
@order.user = current_user
respond_to do |format|
if @order.save
if @order.cmm_buy?
@order.in_draft!
end
format.html { redirect_to "#{my_account_path}#my-orders", notice: 'El pedido se ha creado con éxito.' }
else
@order.products.build
format.html { render :new }
end
end
end
# config/initializers/google_currency.rb
require 'money'
require 'money/bank/google_currency'
# seconds after than the current rates are automatically expired (24 hours)
Money::Bank::GoogleCurrency.ttl_in_seconds = 86400
# set default bank to instance of GoogleCurrency
Money.default_bank = Money::Bank::GoogleCurrency.new
# config/initializers/
MoneyRails.configure do |config|
config.register_currency = {
:iso_code => "US8",
:subunit_to_unit => 100_000_000,
:thousands_separator => ".",
:decimal_mark => ","
}
end
最佳答案
在你的文件中:
config/initializer/money.rb
在顶部添加这一行:
Money::Bank::GoogleCurrency::SERVICE_HOST="finance.google.com"
关于ruby-on-rails - 金钱::银行::GoogleCurrencyFetchError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46227559/
我正在创建一个在线学习平台,我们在其中使用 Moodle 输入和存储问题。我需要创建一个包装器,使用它我可以从我的应用程序访问 Moodle 的问题库。最好的方法是什么:插件还是 Web 服务?已经有
我有一个银行线程和 4 个 ATM 机 .txt 文件。(atm_0_input_file.txt - atm_4_input_file.txt)。 每个文件都是一个线程,一个bank也是一个线程。当
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 9 年前。 Improve this
当我使用“exchange_to (: CLP) .to_i”方法时,它在 OrdersController#create 中给我错误 Money::Bank::GoogleCurrencyFetch
您好,我对数据库的“用户”和从数据库访问其详细信息的企业“客户”感到困惑。 我正在构建一个网络,客户可以在其中登录并访问他们的银行余额、对账单、直接借记等(银行应用程序)。我的 SQL 数据库将有一个
我正在使用 Monzo 银行 API 开发一个金融应用程序,身份验证过程最终会从 Monzo api 接收 access_token:https://docs.monzo.com/#acquire-a
我正在设计银行 ATM 消息处理/路由框架,需要一些帮助来完成技术和架构。交易来自多个合作银行的 ATM,比如目前我们为 5 到 6 家银行提供服务,每家银行不超过 10 台 ATMS。 消息通过 t
我是第一次使用 Stripe,对它们提供的不同 API 有点困惑。有一个 Payment Method API,它是推荐用于处理客户付款方式的 API,但目前它只支持信用卡,如果我理解正确的话....
我是一名优秀的程序员,十分优秀!