我在 Meteor 中尝试排行榜的示例,但我在设置点击事件时做错了。在此示例中,我有三个按钮,一个用于更改按列排序,另一个用于为每个人添加 5 个奖励积分。
这是html:
<div id="outer">
{{> sorter}}
{{> leaderboard}}
</div>
<template name="sorter">
<span>Sorted by {{sortedBy}}</span>
{{#if sortByName}}
<input type="button" id="sortScore" value="sort by score" />
{{else}}
<input type="button" id="sortName" value="sort by name" />
{{/if}}
<input type="button" class="incAll" value="5 bonus points to all" />
</template>
这是js:
Template.sorter.events = {
'click #sortName': function(){
Session.set('orderby', 'name');
},
'click #sortScore': function(){
Session.set('orderby', 'score');
},
'click input.incAll': function(){
Players.find().forEach(function(player){
Players.update(player._id, {$inc: {score: 5}});
});
}
}
调用 Session.set('orderby', 'name'); 在控制台中工作并相应地更新 html,但单击按钮不会。那么我错过了什么?
谢谢