大家好,我不知道如何根据这些代码添加json文件 我想创建一个包含姓名,姓氏,年龄,电话,mevki_id,城市和城镇的用户。
注意:城市和城镇意味着土耳其语 il 和 ilce 。
这是我的代码:
用户架构:
var userSchema = Mongoose.Schema({
name:{type: String,require:true},
surname: {type: String,require:true},
tel: {type: String,require:true},
age: {type: String,require:true},
mevki_id: {type: String,require:true},
location_id : { type : Mongoose.Schema.Types.ObjectId , ref: 'locations'}
位置架构:
var LocationSchema = Mongoose.Schema ({
il: {type: String, require:true},
ilce: {type:String, require:true}
});
用户控制器:
this.createUser = function (req, res, next) {
user.name = req.body.name;
user.surname = req.body.surname;
user.tel = req.body.tel;
user.age = req.body.age;
user.mevki_id= req.body.mevki_id;
user.location_id=location._id.id;
user.save(function(err, result) {
if (err) {
return res.send({'error':err});
}
else {
return res.send({'result':result,'status':'successfully saved'});
}
});
};
我需要用邮递员插入什么样的json文件?
答案 0 :(得分:1)
很明显,您的POST查询数据应该以这种格式发送:
{
name: 'name',
surname: 'surname',
tel: 'tel',
age: 'age',
mevki_id: 'mevki_id',
location_id: 'location_id'
}
我无法真正告诉您控制器中的location._id.id
变量,因为您没有显示它来自哪里(代码早期?),但您需要传递位置 id 作为对数据库中存在的位置的引用,相应于 userSchema location_id
类型。
此 id 是 ObjectId 的参考,用于从 LocationSchema 定义的位置。
您可以省略此元素,因为它在模式中不是 required 。
请记住,架构只是数据的结构,而不是数据本身。