流星方法: -
incrementCount: function(toPerson){
Meteor.users.update({'emails.0.address': toPerson}, {$inc: {'profile.notificationCount': 1}});
}
流星方法调用: -
Meteor.call("incrementCount", message.to);
问题是首先加载notificationCount增量2, 然而,之后的载荷精确地增加1。
我在MongoDB的文档中搜索了解决方案,但没有取得任何成功。
提前感谢您的回复。