gpt4 book ai didi

ruby-on-rails - 在当前页面栏上切换语言环境

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

我目前正在从事一个项目,该项目有 2 个不同的本地人 (nl/fr)。

我们面临这个问题:当我显示 fr/nl 按钮时,如何获取当前页面的翻译 url

我目前正在使用 friendly_id 和 globalize

我们已经尝试过:

= link_to "nl", params.merge(locale: "nl")
= link_to "nl", url_for(:locale => :nl)

两者都可以更改当前语言,但正如我们使用的 friendly_url,当页面以法语加载时 (localhost:3000/c/animaux)

我们应该有

localhost:3000/nl/c/dieren

代替

localhost:3000/nl/c/animaux 

我有很多链接要翻译,所以我希望有一个 rails 来做这件事。

最佳答案

您可以将资源传递给 url_for:

= link_to "nl", params.merge(locale: "nl", id: @resource.id)

如果代码重复太多,您可以创建一个助手:

# Try to guess the resource from controller name
# @param [String] locale
# @param [Hash] options - passed on to url_for
# @option options [String] :text the text for the link
# @option options [Object] :resource the model to link to.
def page_in_other_locale(locale, options = {})
opts = params.dup.merge(options).merge(locale: locale)
text = opts[:text] || locale
resource = nil

if opts[:resource]
resource = opts[:resource]
else
resource = controller.instance_variable_get?(":@#{controller_name.singularize}")
end

opts.merge!(id: resource.try(:id)) if resource
link_to(text, opts.except(:text, :resource))
end

另一种选择是使用 I18n.with_locale,它允许您在另一个语言环境中运行 block :

I18n.with_locale(:nl) do
link_to('nl', params.merge(id: category.name))
end

关于ruby-on-rails - 在当前页面栏上切换语言环境,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30523625/

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