私はメテオが初めてです。簡単なテストを作成しましたが、非常に簡単な部分で行き詰まりました。Web ページのコンテンツはデータベースが変更された場合にのみ更新されますが、結果を返す関数が変更されたときに強制的に更新するにはどうすればよいですか? ここに私のアプリケーションのコードの一部があります:
client.js:
Meteor.subscribe("tasks");
var search_query = "";
Template.page.tasks = function() {
return Tasks.find({title: {$regex: search_query}});
};
Template.task.events({
'click .checkmark': function() {
Tasks.update({_id: this._id}, {$set: {done: !this.done}});
}
});
Template.page.events({
'keyup .search': function() {
search_query = $(".search").val();
}
});
todo.html:
<head>
<title>Todo list</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
{{> page}}
</body>
<template name="page">
<div class="tasks">
<h1>Collections TODOs</h1>
<input type="text" class="search" placeholder="Search...">
{{#each tasks}}
{{> task}}
{{/each}}
</div>
</template>
<template name="task">
<div class="task well well-small">
<button type="button" class="close cancel">×</button>
<h3>
{{#if done}}
<button type="button" class="checkmark done">✓</button>
{{else}}
<button type="button" class="checkmark muted">✓</button>
{{/if}}
{{title}}
</h3>
<div class="creator muted">{{creator}}</div>
<p>{{description}}</p>
</div>
したがって、ユーザーがinput.searchボックス変数に何かを入力すると、変数search_query
が変更され、Template.page.tasks
異なる結果が返されることが期待されます。しかし、実際には何も更新されません。http://slava.meteor.comでアプリを見ることができます