2010-10-01 67 views

回答

4

變化=

"title LIKE ?", "%#{...}%" 
0

您可以使用寶石,做建築查詢的重量提升。

gem act_as_wild_searchable, :git => 'http://github.com/canimus/act_as_wild_searchable.git'

想想看,你有一個名爲產品型號有:名稱和:描述 你可以搜索

Product.name_like? "Camera HD" # Produces where (name like ?, "%Camera HD%") 
Product.description_like? "1080p", :left=>true # Produces where (description like ?, "%1080p") 

我希望它能幫助!