问题是我需要一个 mongodb 集合的两个不同数据集
//lib/col.js
Photos = new Meteor.Collection("photos");
lastPhotos = function() {
return Photos.find({},{sort:{created_time:-1},limit:4});
}
locationPhotos = function(location_id_var)
{
//**doesn't return data from server, goes to local cache**
return Photos.find({location_id: location_id_var});
}
//server
Meteor.publish("lastPhoto", function ()
{
return lastPhoto();
});
Meteor.publish("locationPhoto", function (location_id)
{
return locationPhoto(location_id);
});
//client
Meteor.subscribe("lastPhoto");
Meteor.subscribe("locationPhoto",{location_id:Session.get("location_id")});
流星合并一个集合的两个数据集的主要问题。
在模板中,我对一个集合有两种不同的演示。收藏量很大(6000 份文件),我无法将其全部发送给客户。
如何在不将所有文档发送给客户端的情况下获取一个集合的两组不同文档?