如何在表单标签助手中传递 i18n 插值变量?

发布于 2024-12-10 13:21:40 字数 563 浏览 0 评论 0原文

假设有以下 en.yml

#en.yml
en:
  activerecord:
    books:
       price: "Price in %{currency}"

然后可以在视图中执行以下操作

<%= t :price, :scope => "activerecord.attributes.book", :currency => "USD"%>

,它将打印“Price in USD”。

但是,当此翻译的形式

# views/books/edit.html
f.label :price

可以理解地抛出 I18n::MissingInterpolationArgument 时,我无法弄清楚如何传递货币,但我无法弄清楚传递缺少的参数

# views/books/edit.html
f.label :price, :currency => "USD"

不起作用的语法可能是什么。

Suppose one has the following en.yml

#en.yml
en:
  activerecord:
    books:
       price: "Price in %{currency}"

Then one can do the following in a view

<%= t :price, :scope => "activerecord.attributes.book", :currency => "USD"%>

and it will print "Price in USD".

But I can't figure out how to pass the currency when this translation is in a form

# views/books/edit.html
f.label :price

understandably throws an I18n::MissingInterpolationArgument, but I can't figure out what the syntax might be to pass the missing argument

# views/books/edit.html
f.label :price, :currency => "USD"

does not work.

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

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

发布评论

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

评论(1

櫻之舞 2024-12-17 13:21:40

我会尝试:

<%= f.label I18n.t(:price, :scope => "activerecord.attribute.book", :currency => "USD") %>

I would try:

<%= f.label I18n.t(:price, :scope => "activerecord.attribute.book", :currency => "USD") %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文