错了:db.student.find( { name:{$or:[$regex:/文/,$regex:/好$/] } )
时间: 2024-10-23 07:03:35 浏览: 18
i-hate-regex:iHateregex.io的代码-Regex备忘单
看起来你提供了一个MongoDB查询,但是语法上有些小错误。在MongoDB中,正则表达式应该放在`$regex`操作符内,而不是直接作为字符串传递给`$or`。正确的语法应该是:
```javascript
db.students.find({
name: {
$or: [
{ $regex: /文/, options: 'i' }, // i表示忽略大小写
{ $regex: /好$/, options: 'i' }
]
}
});
```
这里我们在`$regex`里添加了`options: 'i'`来指定模式匹配是不区分大小写的。
如果你想省略`community`字段,可以在`$project`阶段做:
```javascript
db.students.find({
name: {
$or: [
{ $regex: /文/, options: 'i' },
{ $regex: /好$/, options: 'i' }
]
}
}).project({ _id: 1, name: 1, age: 1, grade: 1, community: 0 });
```
阅读全文