模糊查询
官方举例:
db.collection.find( { field: /acme.*corp/i } );
db.collection.find( { field: { $regex: 'acme.*corp', $options: 'i' } } );
项目使用
debates = CaoLiao.models.Debates.find(
name: { $regex : new RegExp("^.*#{name}.*$", "i") }
ts:
$lt: end
).fetch()
网友评论