Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法通过 id 和 subspot 搜索实体
像这样:
Content.search do with(:ids, [1,2,3]) end
不幸的是,实现这一目标的唯一方法是索引该id字段:
id
class YourModel < ActiveRecord::Base searchable do integer :id # ... end end