1

我有两个出版物。

第一个 pub 实现了搜索。尤其是这个搜索

 /* 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');
});

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

4

1 回答 1

0

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

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

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

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

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

现在,订阅一份出版物到模板一并在那里做事。订阅模板 2 的第二个发布。在主模板 ( template1)template2中使用把手语法包含在其中{{> template2}}

于 2016-08-27T15:09:53.117 回答