在 Heroku 中运行时无法更改 Rails 应用程序的区域设置 在开发中效果良好

发布于 2024-11-04 23:48:36 字数 583 浏览 0 评论 0原文

我正在开发一个双语应用程序。我可以通过传递 ?locale=en 将语言环境更改为开发中的英语,它在开发中有效,但在 Heroku 中无效。

通过我在下面插入的记录器,我可以告诉区域设置实际上发生了变化,但所有内容都是在默认区域设置

application_controller.rb

class ApplicationController < ActionController::Base
  protect_from_forgery
  before_filter :set_locale

  def set_locale    
    if %w(en pt-BR).include? params[:locale]
      I18n.locale = params[:locale].to_sym
    end
    logger.info I18n.locale
  end
end

config/application.rb中发出的

config.i18n.default_locale = :'pt-BR'
config.i18n.locale = :'pt-BR'

I have an bilingual app in development. I can change the locale to english in development by passing ?locale=en, it works in development but not in heroku.

By the logger i inserted below I can tell the locale actually changes but all the content is emitted in the default locale

application_controller.rb

class ApplicationController < ActionController::Base
  protect_from_forgery
  before_filter :set_locale

  def set_locale    
    if %w(en pt-BR).include? params[:locale]
      I18n.locale = params[:locale].to_sym
    end
    logger.info I18n.locale
  end
end

config/application.rb

config.i18n.default_locale = :'pt-BR'
config.i18n.locale = :'pt-BR'

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

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

发布评论

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

评论(1

独守阴晴ぅ圆缺 2024-11-11 23:48:36

试试这个

class ApplicationController < ActionController::Base
  protect_from_forgery
  before_filter :set_locale

  protected    
  def set_locale
    if params[:locale].blank?
      I18n.locale = :'pt-BR'
    else
      I18n.locale = params[:locale]
    end
  end   

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

,在routes.rb中

  scope "(:locale)", :locale => /pt-BR|en/ do
    resources :products  # update this!
  end

使用domain.tld/:locale/类型的路由感觉更干净。

Try this

class ApplicationController < ActionController::Base
  protect_from_forgery
  before_filter :set_locale

  protected    
  def set_locale
    if params[:locale].blank?
      I18n.locale = :'pt-BR'
    else
      I18n.locale = params[:locale]
    end
  end   

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

and in routes.rb

  scope "(:locale)", :locale => /pt-BR|en/ do
    resources :products  # update this!
  end

It feels cleaner to have domain.tld/:locale/ type routing as well.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文