2

我无法Meteor.publish响应不断变化的表单字段进行更新。对发布的第一次调用似乎坚持,所以查询在该子集中运行,直到重新加载页面。

我遵循了这篇文章中的方法,但没有任何运气。

非常感谢任何帮助。

在库中:

SearchResults = new Meteor.Collection("Animals");

function getSearchResults(query) {
  re = new RegExp(query, "i");
  return SearchResults.find({$and: [ {is_active: true}, {id_species: {$regex: re}} ] }, {limit: 10});
}

在客户端:

Session.set('query', null);

Template.searchQuery.events({
  'keyup .query' : function (event, template) {
    query = template.find('.query').value
    Session.set("query", query);
  }
});

Meteor.autosubscribe(function() {
  if (Session.get("query")) {
    Meteor.subscribe("search_results", Session.get("query"));
  }
});

Template.searchResults.results = function () {
  return getSearchResults(Session.get("query"));
}

在服务器上:

Meteor.publish("search_results", getSearchResults);

模板:搜索动物

<body>
  {{> searchQuery}}

  {{> searchResults}}
</body>

<template name="searchQuery">
  <form>
  <label>Search</label>
  <input type="text" class="query" />
</form>
</template>

<template name="searchResults">
  {{#each results}}
  <div>
    {{_id}}
  </div>
  {{/each}}
</template>

更新[错误]

显然,问题在于我正在使用的集合是(正确)在 Meteor 之外生成的,但Meteor 不能正确支持 Mongo 的 ObjectIds。此处的上下文和相关的 Stackoverflow 问题

此处显示的转换代码,由antoviaque提供:

db.nodes.find({}).forEach(function(el){
    db.nodes.remove({_id:el._id}); 
    el._id = el._id.toString(); 
    db.nodes.insert(el); 
});

更新[右]

事实证明,这是RegExp/的问题$regex这个线程解释。代替:

function getSearchResults(query) {
  re = new RegExp(query, "i");
  return SearchResults.find({$and: [ {is_active: true}, {id_species: {$regex: re}} ] }, {limit: 10});
}

目前,需要这样做:

function getSearchResults(query) {
  // Assumes query is regex without delimiters e.g., 'rot'
  // will match 2nd & 4th rows in Tim's sample data below
  return SearchResults.find({$and: [ {is_active: true}, {id_species: {$regex: query, $options: 'i'}} ] }, {limit: 10});
}

那很有趣。

PS -- ddp-pre1 分支有一些 ObjectId 功能(SearchResults = new Meteor.Collection("Animals", {idGeneration: "MONGO"});

4

1 回答 1

1

这是我的工作示例:

更新给出的原始 javascript 是正确的。正如评论中指出的那样,问题原来是流星还不支持 ObjectIds

HTML:

<body>
  {{> searchQuery }}
  {{> searchResults}}
</body>

<template name="searchQuery">
  <form>
  <label>Search</label>
  <input type="text" class="query" />
</form>
</template>

<template name="searchResults">
  {{#each results}}
  <div>
     {{id_species}} | {{name}} - {{_id}}
  </div>
  {{/each}}
</template>

Javascript:

Animals = new Meteor.Collection("Animals");

function _get(query) {
    re = new RegExp(query, "i");
    console.log("rerunning query: " + query);
    return Animals.find({$and: [ {is_active: true}, {id_species: {$regex: re}} ] }, {limit: 10});
};

if (Meteor.isClient) {

    Session.set("query", "");

    Meteor.autosubscribe(function() {
        Meteor.subscribe("animals", Session.get("query"));
    });

    Template.searchQuery.events({
      'keyup .query' : function (event, template) {
        query = template.find('.query').value
        Session.set("query", query);
      }
    });

    Template.searchResults.results = function () {
        return _get(Session.get("query"));              
    }
}

if (Meteor.isServer) {
    Meteor.startup(function() {
        if (Animals.find().count() === 0) {
            Animals.insert({name: "panda", is_active: true, id_species: 'bear'});
            Animals.insert({name: "panda1", is_active: true, id_species: 'bearOther'});
            Animals.insert({name: "panda2", is_active: true, id_species: 'bear'});
            Animals.insert({name: "panda3", is_active: true, id_species: 'bearOther'}); 
        }
    });
    Meteor.publish("animals", _get);
}
于 2013-01-15T16:35:06.993 回答