我正试图弄清楚如何在meteor中有条件地将数据发送到客户端。我有两种用户类型,根据用户的类型,它们在客户端上的接口(因此它们所需的数据是不同的)。
让我们说用户属于counselor
或student
。每个用户文档都有role: 'counselor'
或role: 'student'
。
学生可以获得学生特定信息,例如sessionsRemaining
和counselor
,辅导员可以使用pricePerSession
等信息。
我如何确保客户端的Meteor.user()
拥有我需要的信息,而且没有额外的信息?如果我是以学生身份登录,则Meteor.user()
应包括sessionsRemaining
和counselor
,但如果我以辅导员身份登录,则不会。我认为我可能正在搜索的是有条件的出版物和流星术语中的订阅。
答案 0 :(得分:13)
使用字段选项仅返回Mongo查询所需的字段。
Meteor.publish("extraUserData", function () {
var user = Meteor.users.findOne(this.userId);
var fields;
if (user && user.role === 'counselor')
fields = {pricePerSession: 1};
else if (user && user.role === 'student')
fields = {counselor: 1, sessionsRemaining: 1};
// even though we want one object, use `find` to return a *cursor*
return Meteor.users.find({_id: this.userId}, {fields: fields});
});
然后在客户端上调用
Meteor.subscribe('extraUserData');
Meteor中的订阅可能会重叠。因此,这种方法的优点在于,向客户端提供额外字段的发布功能与Meteor的幕后发布功能一起工作,该功能发送基本字段,如用户的电子邮件地址和配置文件。在客户端上,Meteor.users
集合中的文档将是两组字段的并集。
答案 1 :(得分:3)
默认情况下,Meteor用户只发布其基本信息,因此您必须使用Meteor.publish手动将这些字段添加到客户端。值得庆幸的是,Meteor docs on publish有一个示例向您展示如何执行此操作:
// server: publish the rooms collection, minus secret info.
Meteor.publish("rooms", function () {
return Rooms.find({}, {fields: {secretInfo: 0}});
});
// ... and publish secret info for rooms where the logged-in user
// is an admin. If the client subscribes to both streams, the records
// are merged together into the same documents in the Rooms collection.
Meteor.publish("adminSecretInfo", function () {
return Rooms.find({admin: this.userId}, {fields: {secretInfo: 1}});
});
基本上,您希望在满足条件时发布将某些信息返回给客户端的通道,而不希望发布其他信息。然后您在客户端订阅该频道。
在您的情况下,您可能需要在服务器中使用以下内容:
Meteor.publish("studentInfo", function() {
var user = Meteor.users.findOne(this.userId);
if (user && user.type === "student")
return Users.find({_id: this.userId}, {fields: {sessionsRemaining: 1, counselor: 1}});
else if (user && user.type === "counselor")
return Users.find({_id: this.userId}, {fields: {pricePerSession: 1}});
});
然后在客户端订阅:
Meteor.subscribe("studentInfo");
答案 2 :(得分:0)
因为Meteor.users是一个像任何其他Meteor集合一样的集合,你实际上可以像任何其他Meteor集合一样优化其公开内容:
Meteor.publish("users", function () {
//this.userId is available to reference the logged in user
//inside publish functions
var _role = Meteor.users.findOne({_id: this.userId}).role;
switch(_role) {
case "counselor":
return Meteor.users.find({}, {fields: { sessionRemaining: 0, counselor: 0 }});
default: //student
return Meteor.users.find({}, {fields: { counselorSpecific: 0 }});
}
});
然后,在您的客户端:
Meteor.subscribe("users");
因此,Meteor.user()
将根据登录用户的角色自动截断。
这是一个完整的解决方案:
if (Meteor.isServer) {
Meteor.publish("users", function () {
//this.userId is available to reference the logged in user
//inside publish functions
var _role = Meteor.users.findOne({ _id: this.userId }).role;
console.log("userid: " + this.userId);
console.log("getting role: " + _role);
switch (_role) {
case "counselor":
return Meteor.users.find({}, { fields: { sessionRemaining: 0, counselor: 0 } });
default: //student
return Meteor.users.find({}, { fields: { counselorSpecific: 0 } });
}
});
Accounts.onCreateUser(function (options, user) {
//assign the base role
user.role = 'counselor' //change to 'student' for student data
//student specific
user.sessionRemaining = 100;
user.counselor = 'Sam Brown';
//counselor specific
user.counselorSpecific = { studentsServed: 100 };
return user;
});
}
if (Meteor.isClient) {
Meteor.subscribe("users");
Template.userDetails.userDump = function () {
if (Meteor.user()) {
var _val = "USER ROLE IS " + Meteor.user().role + " | counselorSpecific: " + JSON.stringify(Meteor.user().counselorSpecific) + " | sessionRemaining: " + Meteor.user().sessionRemaining + " | counselor: " + Meteor.user().counselor;
return _val;
} else {
return "NOT LOGGED IN";
}
};
}
HTML:
<body>
<div style="padding:10px;">
{{loginButtons}}
</div>
{{> home}}
</body>
<template name="home">
<h1>User Details</h1>
{{> userDetails}}
</template>
<template name="userDetails">
DUMP:
{{userDump}}
</template>