2010-01-20 65 views

回答

1

其實有一個非常簡單的插件會爲你做到這一點: http://github.com/tomash/easy_globalize2_accessors

class Product 
    translates :title, :description 
    globalize_accessors :pl, :en, :de 
    end 

會自動給你訪問器,如:

product.title_en # => "English title" 
product.title_de # => "German title" 
1

假設你的表稱爲MYTABLE:創建 mytable_translations表模型和使用類似

MyTableTranslations.find(:all, :conditions => {:locale => :ru }) 

,就像任何其他查詢,與汝中的所有記錄查找返回。