我正在尝试做这样的事情......
BlogPost.findOne({name: req.params.name}).then((blog) => {
blog.update({$inc: {likes: 1}});
blog.save(function (err) {
if (err) console.log(err);
console.log('Success!');
});
});
但每次我运行我的路线时,我的代码都无法按预期增加字段。 你能在模型实例上使用$ inc吗?