如何在迭代中获取对当前元素的引用?
{{#my_array}}
<p>{{__what_goes_here?__}}</p>
{{/my_array}}
我希望我只是忽略了显而易见的事情。
根据规范的变更日志.
,在规范的v1.1.0 中添加了隐式迭代器 ( )。每个至少实现 v1.1.0 的 Mustache 库都应该支持这一点。
{{#array_of_strings}}<li>{{.}}</li>{{/array_of_strings}}
来自源代码https://github.com/bobthecow/mustache.php
/**
* The {{%IMPLICIT-ITERATOR}} pragma allows access to non-associative array data in an
* iterable section:
*
* $context = array('items' => array('foo', 'bar', 'baz'));
*
* With this template:
*
* {{%IMPLICIT-ITERATOR}}{{#items}}{{.}}{{/items}}
*
* Would render as `foobarbaz`.
*
* {{%IMPLICIT-ITERATOR}} accepts an optional 'iterator' argument which allows implicit
* iterator tags other than {{.}} ...
*
* {{%IMPLICIT-ITERATOR iterator=i}}{{#items}}{{i}}{{/items}}
*/
我暂时离开了我的代码,并记得 Ruby 是鸭式的。由于我的数组是字符串,我只需要:
{{#my_array}}
<p>{{to_s}}</p>
{{/my_array}}
我将把这个问题留在这里,希望能节省一些时间。