在Meteor中可以进行Mongo风格的db.collection.group(…)查询吗?我希望我能在服务器上运行这样的东西(coffeescript):
Meteor.publish "top10",-> Records.group key: {name:true} reduce: (obj,agg) -> agg.count++ initial: {count:0}
其实还没有.
原文链接:https://www.f2er.com/javaschema/281546.htmlMeteor使用node-mongo-native在服务器端执行CURD,而在客户端使用minimalongo.
并且Meteor在两侧保持相同的API.
该文件说 –
In this release,Minimongo has some limitations:
…
findAndModify,upsert,aggregate functions,and map/reduce aren’t supported.
但是,node-mongo-native支持它们,所以我认为Meteor不会为我们公开相关的API.你可以看看packages / mongo-livedata / mongo_driver.js,并自己帮忙.