2

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

我只是想让切换器重定向到当前页面,所以我一直在处理这个问题,我在开发模式下解决了它,但是当我部署到 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>

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

4

0 回答 0