0

Rails 3.2.8、globalize3、および batch_translations を使用して、特定のコンテンツを小さな cms およびショップ システムに翻訳しています。1つのモデルに1つの翻訳に対して問題なく統合しました。したがって、すべてが正常に機能します。私は他のモデルにこの機能を追加し始めました..shhhhh奇妙なことが起こります.

現在の状況: 翻訳を使用して新しいコンテンツを作成できます。すべて大丈夫です。しかし、翻訳テーブルの値を編集/更新しようとしても、何も起こりません! たぶん、batch_translations などに間違ったパラメーター パスがあります...

これがカテゴリの例です!

migration_file

class CreateCategories < ActiveRecord::Migration
  def self.up
    create_table :categories do |t|
      t.timestamps
    end
    Category.create_translation_table! :category_name => :string, :description => :string
  end

  def self.down
    Category.drop_translation_table!
    drop_table :categories
  end
end

モデル:

class Category < ActiveRecord::Base
  attr_accessible :category_name, :description

  attr_accessible :translations_attributes
  translates :category_name, :description
  has_many :translations
  accepts_nested_attributes_for :translations

  class Translation
    attr_accessible :locale, :category_name, :description
  end
end

この奇妙なクラス Translation 私が書いたのは、ロケールなどの大量割り当てエラーが発生したためです...

形:

<div>
  <%= form_for @category, html: { :multipart => true } do |f| %>
    <%= render 'shared/error_messages', object: f.object %>
    <%= build_translation_text_field f, :category_name, :description  %>
    <%= f.submit (t ".save"), class: "btn btn-large btn-primary" %>
  <% end %>
</div>

私の翻訳フォームのヘルパー:

def build_translation_text_field(f, *atts)
  tag = content_tag(:h1, "Test")
  I18n.available_locales.each do |l|
    f.globalize_fields_for l do |g|
      atts.each do |a|
        tag += content_tag(:div, content_tag(:h4, t(a)+":"))
        tag += (g.text_field a, class: l)
      end
    end
  end
  tag
end

category_controller の更新方法:

def create
  @category = Category.new(params[:category])
  if @category.save
    @categories = Category.all
    flash[:success] = t(:category_created)
    respond_to do |format|
      format.html {render 'index'}
      format.js
    end
  else
    flash[:error] = @category.errors.full_messages.each {|msg| p msg}
    @categories = Category.all
    respond_to do |format|
      format.html {render 'new'}
      format.js
    end
  end
end

def update
  @category = Category.find(params[:id])
  if @category.update_attributes(params[:category])
    @categories = Category.all
    flash[:success] = t(:category_updated)
    respond_to do |format|
      format.html {render 'index'}
      format.js
    end
  else
    flash[:error] = @category.errors.full_messages.each {|msg| p msg}
    @categories = Category.all
    respond_to do |format|
      format.html {render 'edit'}
      format.js
    end
  end
end

1つ以上の翻訳された属性を持つ2つのモデルを使用したアイデアや実用的な例はありますか?

4

1 に答える 1

0

私のせい:

モデルの更新:

class Category < ActiveRecord::Base
  attr_accessible :category_name, :description

  attr_accessible :translations_attributes
  translates :category_name, :description
  # has_many :translations <-- delete this
  accepts_nested_attributes_for :translations

  class Translation
    attr_accessible :locale, :category_name, :description
  end
end
于 2012-10-18T14:25:41.517 に答える