mongoose 或查询
mongoose在查询时能否对两个值做 “或”匹配,比如,{username:‘admin’} 或 {email:‘xxx@xx.com’}
2 回复
Model.find.({ $or: [ { username:’admin’ }, { email:’xxx @ xx .com’ } ] }, callback) mongoose文档上还有 query.or([{ username:’admin’ }, { email:’xxx @ xx .com’ }]) 但我没用过
多谢,这个应该可以