ubuntu, ror, jQuery, css, website memo
太嫩, 沒啥心得, 用來紀錄每天學的
2009年4月21日 星期二
ultrasphinx has_many, belongs_to 的建法
[分享]Rails中ultrasphinx全文檢索的使用(對象間關聯的處理)
深入探索:Windows+Rails+Sphinx進行中文全文檢索
belongs_to 的時候用 include
class Press < ActiveRecord::Base
has_many :books
end
class Book < ActiveRecord::Base
belongs_to :press
is_indexed :fields=>[:title],
:include=>[{:association_name=>'press' , :field=>'name' , :as=>'press_name }]
end
has_many 的時候用concatenat
class Info < ActiveRecord::Base
belongs_to :book
end
class Book < ActiveRecord::Base
has_many :infos
is_indexed :fields=>[:title],
:concatenate => [{:association_name=>'infos' , :field=>'content' , :as=>'content'}]
end
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言