标签: mongoose
我有这样的架构:
var mySchema = new Schema({ title: String, body: String, path: String });
我想在标题栏中添加文字索引。
我使用了这段代码:
mySchema.index({title: 'text'});
但它没有用,如果我告诉我哪里错了,我将不胜感激。