我有以下猫鼬模型:
var mongoose = require('mongoose');
var Schema = mongoose.Schema;
var companySchema = new mongoose.Schema({
name: String,
long_name: String,
address: String,
telephone: String,
mobile_phone: String,
fax: String,
email: String,
url: String,
config:{
language: String,
account: String
},
items:[{
name: String,
internal_id: String,
reference_code: String,
description: String
}]
},{ timestamps: true, strict: false });
var Company = mongoose.model('Company', companySchema);
module.exports = Company;
好的,这个想法是让每个用户在 items 数组中插入他们自己的字段。例如,用户将使用几个新的键/值对创建一个新项目。我会将新项目存储在 items 数组中:
var Company = require('mongoose').model('Company');
exports.createItem = function(req, res, next) {
var newitem = {
"name": "Syringe Needels",
"internal_id": "ID00051",
"reference_code": "9506",
"description": "My description",
"batch": "100",
"room": "240",
"barcode": "9201548121136"
};
Company.findById(req.company, function(error, company) {
company.items.push(newitem);
company.save(function(err, doc){
return res.status(200).send('The new item has been stored!');
});
});
};
未在模式中定义的键不是存储;仅存储 name、internal_id、reference_code 和 description。
我怎样才能实现它?