当前位置: 首页 > 工具软件 > Mongoid > 使用案例 >

rails 使用mongoid进行模糊查询

司信厚
2023-12-01

使用mongoid进行查询时查询的字段需要使用正则表达进行查询
例如查询图书名字中包含ruby的书籍可以使用

Book.where(name: /ruby/ )

一句话进行多条件模糊搜索

def index 
conditions = {} 
%w{name author book_type }.each{|attr| 
conditions[attr]=Regexp.new(params[attr]) unless params[attr].blank? 
} 
@books = Book.where(conditions).order("updated_at DESC") 
end 
 类似资料: