我正在开发一个基于Mean Stack的Web应用程序,但是我很关注Add和Edit操作,特别是对于字段“order”的子文档,控制台告诉我“参考”在行上未定义“order.reference”:req.body.order.reference, ,我不知道如何为子文件。当我添加或修改任何“订单”字段时,我收到了一个错误,但是当我添加所有字段时无异常,它可以工作。这是我的猫鼬图:
var mongoose = require('mongoose')
, Schema = mongoose.Schema;
var ContactSchema = new Schema({
name: {type: String},
order: {
reference : {type : String},
adresse : {type : String} ,
product : {type : String}
}
});
var ContactModel = mongoose.model('Contact', ContactSchema);
mongoose.connect('mongodb://localhost/contact');
exports.add = function(req, res) {
var contact = req.body;
contact = new ContactModel({
name: req.body.name,
"order.reference" : req.body.order.reference,
"order.adresse" : req.body.order.adresse,
"order.product" : req.body.order.product
});
contact.save(function (err) {
if (!err) {
res.json(true);
} else {
console.log(err);
res.json(false);
}
});
return res.jsonp(req.body);
};
exports.edit = function (req, res) {
var id = req.params.id;
if (id) {
ContactModel.findById(id, { upsert: true }, function (err, contact) {
contact.name = req.body.name,
contact.order.reference = req.body.order.reference,
contact.order.adresse = req.body.order.adresse ,
contact.order.product = req.body.order.product
contact.save(function (err) {
if (!err) {
res.json(true);
} else {
res.json(false);
console.log(err);
}
});
});
}
};
感谢您的时间,我可以提供角度代码和HTML
答案 0 :(得分:0)
您可能想要使用Express和身体解析器: How do you extract POST data in Node.js?
注意:我相信这是为Express 3编写的,Express 4的语法略有不同