我是流星的新手,並且與流星有一些小問題。 我創建了一個鏈接,它是 http://localhost:3000/game?id=7lJ8F 如何獲取查詢字符串中的id值並將其返回給幫助程序。 我找了答案,但沒有找到答案。MeteorJs獲取模板幫助器的查詢字符串數據使用
Router.route('/game/:_id', function(){
Session.set("gameid",this.params.query.id);
});
Template.gamebefore.helpers({
ids: function() {
return Session.get("gameid");
}
});
我知道這是錯的,但我非常渴望找到答案,所以任何幫助。謝謝!
嘗試用'Session.set( 「遊戲ID」,this.params._id);' – Ethaan 2015-01-21 07:58:39