Mongoose为字段设置文本索引

时间:2015-04-11 18:43:36

标签: mongoose

我有这样的架构:

var mySchema = new Schema({
          title:  String,
          body: String,
          path: String
        });

我想在标题栏中添加文字索引。

我使用了这段代码:

mySchema.index({title: 'text'});

但它没有用,如果我告诉我哪里错了,我将不胜感激。

0 个答案:

没有答案