在进行Atlas文本搜索时,需要将mongoose的schema中的字段进行相应的定义,否则可能会导致返回空数组的问题。需要在schema的定义中添加一个text字段,并且在该字段中使用mongoose提供的Schema.Types.String进行类型定义,并使用textIndex: true开启文本索引功能。
示例代码:
const mongoose = require('mongoose'); const Schema = mongoose.Schema;
const mySchema = new Schema({ title: { type: String, required: true }, description: { type: String, required: true }, text: { type: String, textIndex: true } });
// 定义完schema后,使用mongoose提供的model方法生成一个model const myModel = mongoose.model('MyModel', mySchema);
// 在进行文本搜索时,使用find方法并传入一个text参数即可 myModel.find({ $text: { $search: 'keyword' } }).then(result => { console.log(result); });
注意:在使用文本搜索功能时,需要在Atlas中启用文本搜索索引。可以在Atlas控制台中找到集合,进入集合详情页后,在'Indexes”选项卡中启用'Text Search”索引,然后等待索引完成即可。