我有一个带有'选项的集合'属性,但它是Mongoose中的保留字。 我不想在MongoDB中更改我的整个集合以避免此问题,因此我想知道在Mongoose中定义新架构时是否可以自定义映射。
这是我目前的架构
var QuestionSchema = new Schema({
question: {
type: String,
required: true,
trim: true
},
answer: {
type: String,
required: true
},
options: [String]
});
也许我可以在Mongoose中使用ops
但在MongoDB中使用options
由于