猫鼬为数组对象创建索引

时间:2018-12-29 21:34:47

标签: arrays object indexing mongoose

我的代码:

const mongoose = require("mongoose");
const Schema = mongoose.Schema;

const profileSchema = new Schema({
name:{
 type: String
},
skills: [
    {
      skill: {
        type: String,
      },
      years: {
        type: String
      }
    }
  ]

})
profileSchema.index(
  {
    name: "text"
  }
);

可以对名称进行索引,但是如何在技能技能上创建索引。 感谢您抽出宝贵的时间,如果给出的信息很少,请这么说。

0 个答案:

没有答案