在Node.js库mongoose.js中忽略以下枚举验证:
myArray = ["one", "two", "three"];
const numbers = new mongoose.Schema({
range: { type: String, enum: myArray }
});
但是,明确地将数组与枚举一起使用,例如:
range: { type: String, enum: ["one", "two", "three"] }
有没有办法让枚举使用数组引用?
我目前正在使用: Node.js@v9.8.0 mongoose@5.0.9 MongoDB@2.6.10
感谢您的期待。