我的数据库中有一个字段example
,我希望它是Number
或String
:
export const mySch = new mongoose.Schema({
example: {
type: String,
},
});
我该怎么办?
答案 0 :(得分:0)
mongoose Schema.Types.Mixed
中有一个类型,可以用来保存给定字段中任何类型的值。但是,我还没有找到一种方法来将其限制为特定类型的子集,例如 String 和 Number。
如果您想自己详细学习,这里是链接:https://mongoosejs.com/docs/schematypes.html#mixed。