0

我有两个 for 循环,第二个在第一个循环内,我想在第二个循环内获取第一个循环的 #index。

这是我的代码:

    {{for parentObject}}
      {{for childObject}}
           <input id="myId{{:#indexParent}}{{:#index}}"/>
      {{/for}}
    {{/for}}

我试过这段代码:

    {{for parentObject ~parent=#index}}
      {{for childObject}}
           <input id="myId{{:~parent}}{{:#index}}"/>
      {{/for}}
    {{/for}}

但它不起作用!

4

2 回答 2

0

尝试这个,

{{for parentObject ~parent=#index}}
  {{for childObject}}
       <input id="myId{{:#parent.index}}"/>
  {{/for}}
{{/for}}
于 2014-07-17T13:15:41.700 回答
0

我假设您的对象是数组。~parent=#index 需要在“item”模板块上——({{for outerArray}} 的内容)。

{{for parentObject}}
  {{for childObject  ~parent=#index}}
       <input id="myId{{:~parent}}{{:#index}}"/>
  {{/for}}
{{/for}}

您在上下文中拾取索引的级别太高了。

于 2013-11-12T18:46:48.203 回答