2

globalize と Friendly_id に問題があります。このサイトには、Ru と En の 2 つの言語があります。Gem Friendly_id、globalize、および Friendly_id-globalize が構成され、機能します。言語をロシア語から英語に変更すると、すべて問題ありません。

http://127.0.0.1:3000/ru/o-saite -> http://127.0.0.1:3000/en/about-site

しかし、英語からロシア語に変更すると、リダイレクトが間違っています:

http://127.0.0.1:3000/en/about-site -> http://127.0.0.1:3000/ru/about-site

ページ モデル:

class Page < ActiveRecord::Base
  validates :title, :content, :slug, presence: true
  validates :slug, uniqueness: true
  validates :title, length: { minimum: 3, maximum: 255 }
  validates :content, length: { minimum: 5 }

  # globalize
  translates :title, :content, :slug

  # FriendlyId
  extend FriendlyId

  friendly_id :slug_candidates, use: [:slugged, :finders, :globalize]

  def slug_candidates
    [
      :title,
      [:title, :id]
    ]
  end

  def should_generate_new_friendly_id?
    title_changed?
  end

  def normalize_friendly_id(string)
    title.to_s.to_slug.normalize(transliterations: :russian).to_s
  end

end

移行:

class TranslatePage < ActiveRecord::Migration
  def self.up
    Page.create_translation_table!({
      title: :string,
      content: :text,
      slug: :string
    }, {
      migrate_data: true
    })
  end

  def self.down
    Page.drop_translation_table! migrate_data: true
  end

終わり

application.rbから

config.i18n.load_path += Dir[Rails.root.join('config', 'locales', '**', '*.{rb,yml}')]
config.i18n.default_locale = :ru
config.i18n.fallbacks = true

ページコントローラー

class PagesController < ApplicationController

  before_action :load_page, only: [:show]

  def show    
  end

  private
    def load_page
      @page = Page.friendly.find(params[:id])
      redirect_to action: action_name, id: @page.friendly_id, status: 301 unless @page.friendly_id == params[:id]
    end

    def page_params
      params.require(:page).permit(:title, :content,:slug, :published)
    end

end

何が問題なのですか?

解決しましたか?

問題はビューにありました。layouts/aplication.html.slim には次のものがありました。

ul class='change_lang'
 li = link_to_unless I18n.locale == :en, "EN", locale: :en
 li = link_to_unless I18n.locale == :ru, "RU", locale: :ru

現在、pages/show.slim にあります

- content_for :change_lang do
  li
    - link = I18n.with_locale(:ru){page_path(@page, locale: 'ru')}
    = link_to 'RU', link
  li
    - link = I18n.with_locale(:en){page_path(@page, locale: 'en')}
    = link_to 'EN', link

layouts/aplication.html.slim 内

ul class='change_lang'
  - if content_for?(:change_lang)
    = yield :change_lang
  - else
    li = link_to_unless I18n.locale == :en, "EN", locale: :en
    li = link_to_unless I18n.locale == :ru, "RU", locale: :ru

https://github.com/norman/friendly_id-globalize/issues/7

よりミニマルなアプローチがあります。しかし、このメソッド サーバーはハングしています。

4

1 に答える 1