0

我正在使用 rails 3.2.8、globalize3 和 batch_translations 为一个小 cms 和 shop 系统翻译特定内容。我将它集成到一个模型上的一个翻译没有问题。所以一切都很好。我开始为我的其他模型添加此功能并且..shhhhh 奇怪的事情发生了。

现在的状态:我可以创建带有翻译的新内容。一切都好。但是,如果我尝试编辑/更新翻译表中的值,什么也不会发生!也许在 batch_translations 或其他东西中有错误的参数路径...

这是类别的示例!

迁移文件

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

我写的这个奇怪的类翻译是因为我在语言环境等方面遇到了质量分配错误......

形式:

<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

categories_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

任何人都有想法或有两个模型的工作示例,带有一个或多个翻译属性?

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 回答