Meteor 1.2 将@Index 传递给子模板
Meteor 1.2 Pass @Index to Child Template
刚开始使用 Meteor,所以我可能缺少一些基本的东西。在 Meteor 1.2 中,他们有 {{@index}}
指令。
在模板中,如果我有:
...
{{#each items}}
{{@index}}
{{> childTemplate}}
{{/each}}
...
<template name="childTemplate">
{{@index}}
</template>
主模板中的 @index
可以,但子模板中的不行。我为使用它所做的工作是调用传入 @index
:
的 childTemplate
{{> childTemplate @index=@index}}
这是正确的做法吗?还是有更流星的东西?
是的,没关系
我在这里回答了一个类似的问题:-
但在这种情况下传递它是好的。
Meteor 有 "../var"
到达父上下文,但那是模板上下文,而不是每个块,所以我认为没有更流星的方式
刚开始使用 Meteor,所以我可能缺少一些基本的东西。在 Meteor 1.2 中,他们有 {{@index}}
指令。
在模板中,如果我有:
...
{{#each items}}
{{@index}}
{{> childTemplate}}
{{/each}}
...
<template name="childTemplate">
{{@index}}
</template>
主模板中的 @index
可以,但子模板中的不行。我为使用它所做的工作是调用传入 @index
:
{{> childTemplate @index=@index}}
这是正确的做法吗?还是有更流星的东西?
是的,没关系
我在这里回答了一个类似的问题:-
但在这种情况下传递它是好的。
Meteor 有 "../var"
到达父上下文,但那是模板上下文,而不是每个块,所以我认为没有更流星的方式