流星出版物/订阅无法按预期工作

时间:2016-08-27 14:50:32

标签: meteor meteor-publications

我有两份出版物。

第一个pub实现搜索。特别是This search

 /* publications.js */
Meteor.publish('patients.appointments.search', function (search) {
    check(search, Match.OneOf(String, null, undefined));

    var query = {},
    projection = { 
         limit: 10,
         sort: { 'profile.surname': 1 } };

    if (search) {
        var regex = new RegExp( search, 'i' );

        query = {
            $or: [
                {'profile.first_name': regex},
                {'profile.middle_name': regex},
                {'profile.surname': regex}
          ]
     };

    projection.limit = 20;
}
   return Patients.find(query, projection);
});

第二个基本上返回一些字段

/* publications.js */
 Meteor.publish('patients.appointments', function () {
   return Patients.find({}, {fields:  {'profile.first_name': 1,
                'profile.middle_name': 1,
                'profile.surname': 1});
});

我订阅了每个出版物,如下:

/* appointments.js */
Template.appointmentNewPatientSearch.onCreated(function () {
    var template = Template.instance();

    template.searchQuery = new ReactiveVar();
    template.searching = new ReactiveVar(false);

    template.autorun(function () {
       template.subscribe('patients.appointments.search', template.searchQuery.get(), function () {
          setTimeout(function () {
              template.searching.set(false);
          }, 300);
       });
    });
});


Template.appointmentNewPatientName.onCreated(function () {
    this.subscribe('patients.appointments');
});

所以这是我的问题:当我使用第二个订阅(到appointments.patients)时,第一个订阅不起作用。当我评论第二个订阅时,第一个订阅再次工作。我不确定我在这里做错了什么。

1 个答案:

答案 0 :(得分:0)

这里的问题是你有两套同一个Collection的出版物。因此,当您在客户端中引用该集合时,现在可以指定它所引用的出版物中的哪一个。

您可以做的是,集体发布所有数据,即您将需要的所有字段,然后使用客户端上的代码对它们执行查询。

或者,更好的方法是拥有两个模板。描述性代码:

<template name="template1">
   //Code here
      {{> template2}}   //include template 2 here
</template>

<template name="template2">
     //Code for template 2
</template>

现在,订阅一个出版物到模板一,然后在那里做。订阅第二个出版物到模板2。 在主模板(template1)中,使用句柄语法template2

在其中加入{{> template2}}