我的代码:
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"
}
);
可以对名称进行索引,但是如何在技能的技能上创建索引。 感谢您抽出宝贵的时间,如果给出的信息很少,请这么说。