gpt4 book ai didi

node.js - 未处理的拒绝 MongoError : The dollar ($) prefixed field '$inc' in '$inc' is not valid for storage

转载 作者:太空宇宙 更新时间:2023-11-03 23:17:10 25 4
gpt4 key购买 nike

当我尝试使用 $inc 在 mongodb 中按指定值增加字段时,出现以下错误

“未处理的拒绝 MongoError:‘$inc’中的美元 ($) 前缀字段‘$inc’对于存储无效。”

下面是我的代码

APILog.update({ apiId: 1 }, {$inc:{"dataCount":10}}); 

提前致谢

最佳答案

您应该在 Mongo Query 中包含 JSON 格式的值。可能因此您面临问题。您能否尝试将您的查询更新为:

APILog.update({
"apiId": 1
},
{
"$inc": {
"dataCount": 10
}
})

关于node.js - 未处理的拒绝 MongoError : The dollar ($) prefixed field '$inc' in '$inc' is not valid for storage,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54003400/

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