资源说明:猫鼬正则表达式搜索
用于模式可搜索字段的正则表达式搜索的mongoose插件。
它支持带正则表达式搜索的string schema fields , array of strings , single embeded doc string fields和带有searchable: true选项的array embeded doc string fields 。
要求
NodeJS v6.5 +
安装
$ npm install --save mongoose-regex-search
用法
const mongoose = require ( 'mongoose' ) ;
const searchable = require ( 'mongoose-regex-search' ) ;
const Schema = mongoose . Schema ;
const UserSchema = new Schema ( {
name : { type : String , searchable : true }
age : { type : Number }
} ) ;
本源码包内暂不包含可直接显示的源代码文件,请下载源码包。