我正在学习流星并关注this链接。
当我使用Session.set
时,它在控制台中给出了错误Session is not defined
我的客户端文件夹中的main.js文件代码如下
PlayersList = new Meteor.Collection('players');
if(Meteor.isClient) {
Template.leaderboard.events({
'click .playerName ': function(){
var playerId = this._id;
Session.set('selectedPlayer', playerId);
}
});
}
我不知道我做错了什么
我已经阅读了this帖子。
我的文件位于客户端文件夹中,代码也位于isClient
条件内。
它仍然给我错误。
答案 0 :(得分:10)
默认情况下不会安装会话包。你只需要运行:
meteor add session