2

我从父循环/每个循环获取值时遇到问题。我怎样才能做到这一点?

我正在遍历一些问题,然后遍历一些答案。在每个答案上,我想添加问题 ID..

JSON:

{
    "questions": [
        {
            "id": 1,
            "answers": [
                ...
                ...
                ...
            ]
        }
    ]

}

和 Assemble.io 嵌套循环/每个

{{#forEach questions}}
    <h2>{{id}}</h2>
    <ul>
        {{#forEach this.answers}}
            <li>
                <input type="radio" name="{{id}}" id="{{id}}-{{index}}"/>
            </li>
        {{/forEach}}
    </ul>
{{/forEach}}

你知道我如何从父循环/每个中获取 ID 吗?

先感谢您... :-)

4

1 回答 1

1

在车把中,您可以使用父访问器语法../

{{#forEach questions}}
    <h2>{{id}}</h2>
    <ul>
        {{#forEach this.answers}}
            <li>
                <input type="radio" name="{{../id}}" id="{{../id}}-{{index}}"/>
            </li>
        {{/forEach}}
    </ul>
{{/forEach}}
于 2015-01-16T04:05:47.127 回答