How do I obtain a reference to the current element in the iteration?

{{#my_array}}
    <p>{{__what_goes_here?__}}</p>
{{/my_array}}

I hope I am just overlooking the obvious.

link|improve this question

feedback

3 Answers

From the source code 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}}
 */
link|improve this answer
feedback
up vote 6 down vote accepted

I walked away from my code for a bit and remembered that Ruby is duck typed. Since my array was of strings, all I needed was:

{{#my_array}}
    <p>{{to_s}}</p>
{{/my_array}}

I'll leave this question here in the hopes to save somebody else some time.

link|improve this answer
feedback

I'm stuck in something similar with the php implementation, which is not duck typed unfortunately.

Is there some standard way to do this that works in every implementation?

link|improve this answer
tutuca -- see George's answer for the PHP version. – Jeremy Heiler Nov 18 '10 at 20:11
bad luck I don't have enough privileges to comment in his answer :P. Anyway, the problem was not with mustache itself github.com/bobthecow/mustache.php/issues/#issue/22 – tutuca Nov 18 '10 at 20:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.