我有调试此错误的问题,你可以帮帮我吗?
这是我的代码
router.post('/accounts/show_accounts/:id', function(req,res){
Account.findOne(
{_id:req.params.id},
{$push: {team: {team_name: req.body.team_name}}},
{safe: true, upsert: true},
function(err, model) {
console.log(err);
}
)
});
我收到以下错误
errmsg:'不支持的投影选项:$ push:{team:{team_name: “hahaha”}}',代码:2,codeName:' BadValue' }
答案 0 :(得分:3)
如错误所述, findOne()
方法会将文档{ "$push": { "team": { "team_name": req.body.team_name } } }
视为投影,而在投影字段中,名称不会以$
开头。我相信你想做一个更新操作,而不是一个查询。在这种情况下,您需要使用 findOneAndUpdate()
或 findByIdAndUpdate()
方法,因为 $push
运算符仅用于更新操作,而不是像 findOne()
:
router.post('/accounts/show_accounts/:id', function(req, res){
Account.findByIdAndUpdate(
req.params.id,
{ "$push": { "team": { "team_name": req.body.team_name } } },
{ "upsert": true, "new": true },
function(err, model) {
if (err) throw err;
console.log(model);
}
)
});
NB :findByIdAndUpdate(id, ...)
相当于findOneAndUpdate({ _id: id }, ...)