1

我的大部分网站都在语言环境(i18n)下工作。但是,现在我在管理方面工作。这在任何本地都不起作用。我刚刚意识到,不在本地范围内的每个 URL 都有这个“?locale = en”附加到 URL 的末尾。

你可以看看这个网站。每个 URL 似乎都很好。但是,如果您转到带您返回根目录的左上角图标,则会在 URL 中添加该位。 http://hik-fyp.heroku.com

我猜是用某种语言显示根。但是,当涉及到管理部分(单语)时,它无处不在。

正常吗?这会以某种方式干扰网站吗?有没有办法摆脱它?我花了一段时间在网上研究,但找不到类似的东西。提前致谢...

这是 ApplicationController 的摘录

after_filter :store_location
  before_filter :set_locale




  def set_locale
    logger.debug "* Accept-Language: #{request.env['HTTP_ACCEPT_LANGUAGE']}"
    I18n.locale = params[:locale] || extract_locale_from_accept_language_header || I18n.default_locale
    logger.debug "* Locale set to '#{I18n.locale}'"
    if current_user
      current_user.locale = params[:locale]
      current_user.save
    end
    session[:locale] = I18n.locale
  end


  def default_url_options(options={})
    logger.debug "default_url_options is passed options: #{options.inspect}\n"
    { :locale => I18n.locale }
  end


  def store_location
    # store last url as long as it isn't a /users path
    session[:previous_url] = request.fullpath unless request.fullpath =~ /\/users/
  end

  def after_sign_in_path_for(resource)
    session[:previous_url] || root_path
  end
4

1 回答 1

0

您正在定义当您设置时会发生这种情况

def default_url_options(options={})
  { :locale => I18n.locale }
end

这告诉 rails url_for 帮助器(它是 link_to 和许多其他的基础)自动包含 locale 参数。

于 2014-07-09T19:16:30.570 回答