gpt4 book ai didi

node.js - Mongoose $text 字段错误

转载 作者:太空宇宙 更新时间:2023-11-03 23:32:59 24 4
gpt4 key购买 nike

我试图在 Mongoose 中使用`$text,但它总是向我显示错误。

模型/架构:

var thSchema2=new Schema({
userid:{ type: String, unique: true,index: true},
password:String,
name:String,
phone:String
});

我在 Controller 中的查询:

Model
.find( { $text : { $search : "mo"} })
.exec(function(err, results) {
if(err){
console.log("eroro ocured");
res.send(401);
}else{
console.log("foud");
res.json(results);
}
});

它总是向我显示错误。

最佳答案

您的架构中缺少text索引,如果您想要搜索字段name,请添加如下文本索引

thSchema2.index({'name': 'text'});

关于node.js - Mongoose $text 字段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36005381/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com