我有一个环境文档,其中包含引号字段,这是我需要更新的数组。在节点中使用以下查询尝试。查询在set命令处失败。我尝试只使用find,它返回了环境对象。
Environments.
findOneAndUpdate({query,
$set:
{
'xpaths.$.work': work,
'xpaths.$.update': update
}
}).exec(function(err, env){
if (err) {
console.log("Error finding report");
} else if(env) {
console.log("Env not found in database", env);
}
});