我正在尝试 Meteor 的排行榜示例,并且在尝试随机化玩家分数时遇到了错误。
我遇到的例外是Exception while simulating the effect of invoking '/players/update' undefined
相关代码如下所示:
'click input.randomize_scores': function () {
Players.find().forEach(function (player) {
random_score = Math.floor(Math.random()*10)*5;
Players.update(player, {$set: {score: random_score}})
});
}
我觉得我在这里做了一些非常愚蠢的事情。我真的很感激一个指针。