我有以下代码:
var conditions = {_id: playerID, 'gameStats.GameID' : gameID},
update = {$inc: {'gameStats.$.wins' : 1}},
options = {new : true};
player.findAndModify(conditions, update, options, function (err, doc) {
if (err) {
console.log("updated failed")
return res.sendStatus(300);
}
当我执行它时,返回错误消息“TypeError:undefined is not a function”,我真的无法弄清楚问题出在哪里。有人可以帮忙吗?