module.exports.addList = function(req, res){
Category.find({_id: req.params.id, user_id: req.user.id}, function(err, category){
category.lists.push(req.params.list_id);
category.save(function(err, category){
if(err){
res.json({"Error": err.message})
return console.log(err);
}
//find the list and then save the category id..?
res.json({"Category": category})
})
})
}
所以类别有很多列表,这是一个添加列表的功能。
这样可以正常工作,但是在Lists模式中,我想也可以引用类别ID。是导入List模式然后使用id查询它然后保存它的正确方法吗?