这基本上是我在 Meteor 项目中遇到的例外。
我有Meteor.publish
一个简单的查询:
Meteor.publish('test', function(x) {
return Test.find({ a: x });
});
然后我在我的客户上有这个:
Meteor.subscribe('test', 'TEST');
这是我的控制台的结果:
Exception in defer callback: Error: The Mongo server and the Meteor
query disagree on how many documents match your query. Maybe it is
hitting a Mongo edge case? The query is: { a: "Test" }
流星版本:1.6.1
蒙哥版本:3.4.10
Meteor(内包)版本:1.3.0
Mongo(内包)版本:1.4.2
我想要一个不需要更新任何版本的解决方案。谢谢!