Rails ajax 货币

发布于 2024-12-08 11:44:59 字数 141 浏览 0 评论 0原文

如何创建以下内容:

我想使用rails

[usd|rub|eur]

制作ajax货币切换器在db中我只有usd值

什么gem适合此目的?或者也许浏览器端解决方案更好?

谁有经验请给我建议

How to create the following:

I want make ajax currency switcher with rails

[usd|rub|eur]

In db I have only usd value

What gem suitable for this purpose? Or maybe browser-side solution is better?

Who has experience please give me advise

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无畏 2024-12-15 11:44:59

我们使用 Money Gem 您可以在模型中指定 Money 列以使处理更容易。

# Get exchange rates
Money.default_bank = ExchangeBankWhichScrapesXeDotCom.new
# new money object in USD
usd = Money.new(1000, "USD")
# exchange to rubel
rub = usd.exchange_to("RUB")

we use the Money Gem you can specify a Money column in your model to make the handling easier.

# Get exchange rates
Money.default_bank = ExchangeBankWhichScrapesXeDotCom.new
# new money object in USD
usd = Money.new(1000, "USD")
# exchange to rubel
rub = usd.exchange_to("RUB")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文