我在MongoDB中拥有如下数据:
{
_id: ObjectId('xxxxxxxxxxxx'),
data: {
key1: value 1,
key2: value 2,
...
}
...
}
我在Node.js应用中使用 Mongoose 连接 MongoDB 。
我想查询数据字段包含某个字符串的所有对象,即:'apple'
{
data: {
...
key3: 'I'd like to eat apple'
....
}
}
如何使用 Mongoose ?
进行此类查询