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.
|
feedback
|
|
From the source code https://github.com/bobthecow/mustache.php
| |||
|
feedback
|
|
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:
I'll leave this question here in the hopes to save somebody else some time. | |||
|
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? | |||||
feedback
|