我无法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"});
)