我要发布一个搜索结果,并将结果限制为500个:Meteor.publish("myPublish",function(status){varfoundOnServer=MyCollection.find({"status":status},{limit:500,sort:{"someField":1}});console.log("returning"+foundOnServer.count()+"documentsfromserver");returnfoundOnServer;});但是当查询结果超过500个文档时,console.log显示的是实际数量(超过500个),但是在客户