不可能在 Mustache 中迭代关联数组,因为 Mustache 将其视为“散列”而不是可迭代列表。即使您可以遍历列表,您也无法访问密钥。
为此,您必须准备数据。在将数据传递到 Mustache 之前,您可以使用 foreach 循环来执行此操作,或者您可以通过将数组包装在“Presenter”中来执行此操作。这样的事情应该可以解决问题:
<?php
class IteratorPresenter implements IteratorAggregate
{
private $values;
public function __construct($values)
{
if (!is_array($values) && !$values instanceof Traversable) {
throw new InvalidArgumentException('IteratorPresenter requires an array or Traversable object');
}
$this->values = $values;
}
public function getIterator()
{
$values = array();
foreach ($this->values as $key => $val) {
$values[$key] = array(
'key' => $key,
'value' => $val,
'first' => false,
'last' => false,
);
}
$keys = array_keys($values);
if (!empty($keys)) {
$values[reset($keys)]['first'] = true;
$values[end($keys)]['last'] = true;
}
return new ArrayIterator($values);
}
}
然后只需将您的数组包装在 Presenter 中:
$view['data'] = new IteratorPresenter($view['data']);
您现在可以在迭代数据时访问键和值:
{{# data }}
{{ key }}: {{ value }}
{{/ data }}