我有一个名为 Profiles 的服务器端 mongo 集合。
如果用户:adminId,我需要发布和订阅整个配置文件集合。
这样管理员就可以编辑、更新等...每个配置文件集合项。
但我希望用户能够看到他们的个人资料记录。
所以我尝试了这个...
客户端
MyProfile = new Meteor.Collection("myprofile");
Meteor.subscribe('profiles');
Meteor.subscribe('myprofile');
通用 - 客户端和服务器端
Profiles = new Meteor.Collection("profiles");
服务器端 - 配置文件的发布和订阅工作正常。
// this returns all profiles for this User
// if they belong to an ACL Group that has acl_group_fetch rights
Meteor.publish("profiles", function() {
var user_groups = Groups.find({users: this.userId()});
var user_groups_selector = [];
user_groups.forEach(function (group) {
user_groups_selector.push(group._id);
});
return Profiles.find( {
acl_group_fetch: {
$in: user_groups_selector
}
});
});
这是问题似乎开始的地方。Profiles.find 正在返回集合项,因为我可以将它们输出到控制台服务器端。但由于某种原因,发布和订阅不起作用。客户什么也没收到。
// return just the users profile as myprofile
Meteor.publish("myprofile", function() {
return Profiles.find({user: this.userId()});
});
任何想法我做错了什么。我希望能够发布用户 A 可以插入、获取、更新、删除但用户 B(C、D 和 E)只能看到他们的记录的记录集合。