Meteor访问每个值的父级



我已经嵌套了每个,并希望使用父this值。

{{#each county}}
        Country name : {{this}}
    {{#each state}}
        {{this}} is one of the state of {{country}} //here how to use country
    {{/each}}
{{/each}}

我试过{{../this}},但它显示

Can only use `this` at the beginning of a path.
Instead of `foo.this` or `../this`, just write `foo` or `..`.

只需执行

{{#each county}}
  Country name : {{this}}
 {{#each state}}
    {{this}} is one of the state of {{..}} //here how to use country
 {{/each}}
{{/each}}

参见{{..}}

编辑:编辑的答案

最新更新