7

我试图弄清楚如何有条件地将数据发送到流星中的客户端。我有两种用户类型,根据用户类型,他们在客户端上的界面(因此他们需要的数据不同)。

假设用户的类型为counseloror student。每个用户文档都有类似的东西role: 'counselor'or role: 'student'

学生有学生的具体信息,例如sessionsRemainingcounselor,辅导员有pricePerSession等信息。

我如何确保Meteor.user()在客户端有我需要的信息,而没有额外的信息?如果我以学生身份登录,Meteor.user()则应包括sessionsRemainingand counselor,但如果我以辅导员身份登录,则不包括。我想我可能正在搜索的是流星术语的有条件的出版物和订阅。

4

3 回答 3

13

使用fields选项仅从 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集合中的文档将是两组字段的并集。

于 2012-12-28T19:56:10.163 回答
3

默认情况下,Meteor 用户仅发布其基本信息,因此您必须使用 Meteor.publish 手动将这些字段添加到客户端。值得庆幸的是,发布的 Meteor 文档有一个示例向您展示如何执行此操作:

// 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");
于 2012-12-28T19:50:26.927 回答
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>
于 2012-12-28T20:19:50.060 回答