mongo - $ inc使用流星方法递增2而不是1

时间:2016-06-11 14:01:14

标签: mongodb meteor

流星方法: -

incrementCount: function(toPerson){

Meteor.users.update({'emails.0.address': toPerson}, {$inc: {'profile.notificationCount': 1}});

}

流星方法调用: -

Meteor.call("incrementCount", message.to);

问题是首先加载notificationCount增量2, 然而,之后的载荷精确地增加1。

我在MongoDB的文档中搜索了解决方案,但没有取得任何成功。

提前感谢您的回复。

0 个答案:

没有答案