我试图弄清楚如何通过前往 /player/:username 来查看用户配置文件。我有模板,现在我只需要调用 Meteor.users 通过 URL 中指定的 :username 来查找用户帐户。我正在使用路由器包。
'/player/:username': {
to: 'user_profile',
and: function(){
var user = Meteor.users.findOne({ username: username });
}
},
在此先感谢,内森