我的应用程序包含一个饮料模型
class Drink < ActiveRecord::Base
attr_accessible :name
has_many :recipe_steps, :dependent => :destroy
has_many :ingredients, through: :recipe_steps
end
成分模型
class Ingredient < ActiveRecord::Base
attr_accessible :name
has_many :recipe_steps
end
我将如何获得它,所以当用户搜索一种成分时,它会返回所有含有该成分的饮料?
附加信息:我目前正在使用 sunspot/solr 进行搜索。