mongoose动态定义枚举值

时间:2015-11-19 10:06:56

标签: enums mongoose schema

有没有办法动态定义枚举值?

var mongoose = require('./index'),
TempSchema = new mongoose.Schema({
 color: {type: String, enum: ['Red', 'Green', 'Blue']}
});
上述3个字符串中的

是在设计时定义的。 我想要的是从另一个模式文档中获取颜色并将它们添加到此枚举数组中。 有可能吗?

0 个答案:

没有答案