首页 > 解决方案 > Mongoose 不更新文档

问题描述

我尝试到处搜索,但总是出错或没有任何改变。这是我的代码:

Blog.findOneAndUpdate({title: "Lol"}, {$push: {details:"detail"}})
.then(function(){
    console.log("Data updated");
}).catch(function(error){
    console.log(error);
});

如果有人能给我建议,我会很高兴的。我仍然需要从文档中删除并添加/更新文档。

(对不起英文...谷歌翻译)

标签: node.jsarraysmongodbmongoosemongoose-schema

解决方案


推荐阅读