Mongoose数据类型如何定义多个类型值? ESLint错误

时间:2017-04-26 09:57:39

标签: node.js mongoose eslint

我想将字段'lines'定义为值数组,可以是不同类型(数字或字符串或布尔值或日期)

当我尝试:

lines: [
{
  type: String,
  content: Mixed
}

我收到ESLint错误错误:未定义混合

我应该写吗?

 const Schema = mongoose.Schema;
 ...
 lines: [
   Schema.Types.Mixed
 ]

1 个答案:

答案 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);