我有一个文章模型,我想检索所有条目,无论其区域设置如何。
Article.all仅返回原始对象(存储在articles表中的对象)而没有它们的翻译(article_translations表中的可翻译字段)。此外,具有与当前I18n.locale不同的语言环境的对象将其字段设置为nil(?)。
Article :: Translation.all确实返回所有对象而不管语言,但只返回翻译类(article_translations表 - 这意味着只设置为可翻译的字段)。
我正在使用Rails 3.0.7和Globalize3 0.1.0 BETA。
这是模型:
class Article < ActiveRecord::Base
translates :title, :content, :slug, :published_at, :created_at, :updated_at
end
这是迁移文件:
class CreateArticles < ActiveRecord::Migration
def self.up
create_table :articles do |t|
t.string :title
t.text :content
t.string :slug
t.boolean :published
t.datetime :published_at
t.timestamps
end
add_index :articles, :slug
Article.create_translation_table! :title => :string,
:content => :text,
:slug => :string,
:published_at => :datetime,
:created_at => :datetime,
:updated_at => :datetime
end
def self.down
Article.drop_translation_table!
drop_table :articles
end
end
答案 0 :(得分:1)
你有:title,:content,:slug在两个表中重复。根据您的模型定义,它们应该只在转换表中。 : - )