3

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

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

我目前正在使用friendly_id 和全球化

我们尝试过:

= 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 

我有很多要翻译的链接,所以我希望有一个铁路可以做到这一点。

4

1 回答 1

1

您可以将资源传递给 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,它可以让你在另一个语言环境中运行一个块:

I18n.with_locale(:nl) do
  link_to('nl', params.merge(id: category.name))
end
于 2015-05-29T08:31:27.893 回答