在Mustache中迭代一个双数组

时间:2014-12-16 23:41:06

标签: php mustache mustache.php

我有一个双数组,我将其传入我的Mustache文件,前两个级别按编号索引。变量名称为{{groups}},因此我可以使用{{#groups}}{{/groups}}遍历外部部分,但每组内都有一系列问题。

我希望能够遍历每个问题并为每个问题创建一些html。如果引用是数字的,我该怎么做?

1 个答案:

答案 0 :(得分:0)

如果您提供了一些代码和/或数据示例,那么给您答案会更容易,但要点是您需要implicit iterator

{{# groups }}
  {{# . }}
     <!-- this section will happen once per element in each element of groups -->
  {{/ . }}
{{/ groups }}