Zastosuj strict: false
opcji do istniejącej definicji schematu, dostarczając go jako drugi parametr do Schema
konstruktor:
var appFormSchema = new Schema({
User_id : {type: String},
LogTime : {type: String},
feeds : [new Schema({
Name: {type: String},
Text : {type: String}
}, {strict: false})
]
}, {strict: false});
module.exports = mongoose.model('appForm', appFormSchema);
Jeśli chcesz opuścić feeds
jako w pełni bez schematu, tutaj możesz użyć Mixed
:
var appFormSchema = new Schema({
User_id : {type: String},
LogTime : {type: String},
feeds : [Schema.Types.Mixed]
}, {strict: false});
module.exports = mongoose.model('appForm', appFormSchema);