在meteor js

时间:2017-02-24 20:33:00

标签: javascript meteor

在meteor js中我有一个get函数,如: -

localhost:3000/profile?user=rishav

现在我想在meteor js模板中检索这个用户的值。如果是发布数据,我们可以使用event.target.blah.value;其中blah是id.But如何获取数据

1 个答案:

答案 0 :(得分:0)

使用Iron Router:

  

Router.current()。params._id

使用Flow Router:

  

FlowRouter.getParam( “:_ ID”)

如果您使用多个参数,则需要具体选择要检索的参数。