I am pulling JSON like below from api
{
"totalResults":1,
"items":[
{
"body":"here is the body",
"excerpt":"here is the exceprt",
"title":"article title",
"customFields":[
{
"basename":"image_title",
"value":""
},
{
"basename":"image_tag",
"value":""
},
{
"basename":"image_text",
"value":""
},
{
"basename":"image_01",
value: "<form mt:asset-id="428270" class="enclosure enclosure-image" style="display: inline;"><a href="http://mywebsite.com/news/images/2015/06/image.jpg">image.jpg</a></form>"
},
{
"basename":"image_01_cap",
"value":"some text for the captions"
}
]
}
]
}
And I'm new with mustache. The data I want to parse is not an array of objects, it is an object with array values.
So far I got this but nothing is outputting. I also want extract img url from the value. I am using the recent version of Mustache.js 2.1.2
{{#items}}
{{#customFields}}
{{#basename.image_01}}
<img src="{{value}}">
{{/basename.image_01}}
{{/customFields}}
{{/items}}
I would like the OUTPUT be: <img src="http://mywebsite.com/news/images/2015/06/image.jpg">
You are trying to use logic in your template engine. Mustache is designed to not allow that kind of behavior.
Furthermore image_01 is a value of basename and not a property. You can not reach values with dot notation i.e. obj.property.
Best solution is to process json further by server or client side before passing it to mustache.