我想将字段'lines'定义为值数组,可以是不同类型(数字或字符串或布尔值或日期)
当我尝试:
lines: [
{
type: String,
content: Mixed
}
我收到ESLint错误错误:未定义混合
我应该写吗?
const Schema = mongoose.Schema;
...
lines: [
Schema.Types.Mixed
]
答案 0 :(得分:0)
根据mongoose documentation,您可以使用以下混合模式类型
var schema = new Schema({
ofMixed: [Schema.Types.Mixed],
})
// example use
var Thing = mongoose.model('Thing', schema);
m.ofMixed = [1, [], 'three', { four: 5 }];
m.save(callback);