i18n语言环境切换器不会重定向到生产中的当前页面(rails4)

时间:2013-12-22 10:46:27

标签: ruby-on-rails heroku internationalization url-redirection switchers

我最初使用的是三种语言的应用程序。 我已经制作了一个工作正常(在开发和生产中)但重定向到主页的切换器。

我只是希望切换器重定向到当前页面,所以我一直在处理它,我在开发模式下解决了它,但是当我部署到heroku时,它甚至松动了翻译。

我错过了什么?我和Rails很小...

这是我在application_controller.rb中的代码:

class ApplicationController < ActionController::Base

    before_action :set_i18n_locale_from_params
    before_action :redirect_to_locale
    # ...
    # Prevent CSRF attacks by raising an exception.
    # For APIs, you may want to use :null_session instead.
    protect_from_forgery with: :exception

    # ...

    protected
    def set_i18n_locale_from_params
        if params[:set_locale]
            if I18n.available_locales.map(&:to_s).include?(params[:set_locale])
                I18n.locale = params[:set_locale]
            else
                flash.now[:notice] =
                    "#{params[:set_locale]} translation not available"
                logger.error flash.now[:notice]
            end
        end
    end

    def default_url_options
        { locale: I18n.locale }     
    end

    helper_method :current_path
    def current_path
        url = request.env["PATH_INFO"]
        Rails.application.routes.recognize_path url
    end

    def redirect_to_locale
        if params[:set_locale].present?
            route = current_path
            route[:locale] = I18n.locale
            redirect_to route
        end
    end

end

这是application.html.erb中的切换器:

            <div id="languages">
                <%= I18n.locale %>
                <%= form_tag current_path, class: 'locale', :method => :get do %>
                    <%= select_tag 'set_locale',
                        options_for_select(LANGUAGES, I18n.locale.to_s),
                        onchange: 'this.form.submit()' %>
                    <%= submit_tag 'submit' %>
                    <%= javascript_tag "$('.locale input').hide()" %>
                <% end %>
            </div>

任何帮助将不胜感激! 感谢。

0 个答案:

没有答案