我从父循环/每个循环获取值时遇到问题。我怎样才能做到这一点?
我正在遍历一些问题,然后遍历一些答案。在每个答案上,我想添加问题 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 吗?
先感谢您... :-)