iron router 向字符串添加参数以及添加查询

iron router add parameter to string as well as add a query

刚开始玩流星,我正在尝试使用 iron-router 进行路由。这是我的数据结构:

team
  _id
  name
  tags:[{name,counter}]

这是我尝试在 模板

中使用的链接
{{#each team.tags}}
   <a href="{{ pathFor 'team' _id:parent._id query...? }}">#{{this.name}} <span class="count-list">{{this.counter}}</span></a> 
{{/each}}

我的路由器有:

route('/team/:_id')  // And I get the search through the GET property... this.params.query 

所以:

  1. 如何获取模板中的父团队_id?
  2. 如何在 pathFor 中传递 _id 和搜索参数?

提前致谢。

您可以使用 ../ 返回父范围,在本例中为 teams

{{#each team.tags}}
   <a href="{{pathFor 'team' _id=../_id query='queryString'}}">#{{this.name}} <span class="count-list">{{this.counter}}</span></a> 
{{/each}}