gpt4 book ai didi

javascript - errmsg : 'Unsupported projection option: $push: { ... }' , 代码 : 2, codeName: 'BadValue' }

转载 作者:可可西里 更新时间:2023-11-01 09:29:00 24 4
gpt4 key购买 nike

我在调试这个错误时遇到了问题,你能帮我吗?

这是我的代码

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: 'Unsupported projection option: $push: { team: { team_name: “hahaha” } }', code: 2, codeName: 'BadValue' }

最佳答案

如错误所述, 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);
}
)
});

注意:findByIdAndUpdate(id, ...) 等价于findOneAndUpdate({ _id: id }, ...)

关于javascript - errmsg : 'Unsupported projection option: $push: { ... }' , 代码 : 2, codeName: 'BadValue' },我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41591630/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com