Let’s say i have object named “WB” and this object include ArrayList named “result”. In my controller Spring boot WB presented like (“WB”,WB). In mustache template WB presented like and everything work fine:
{{#WB}}
{{someStringObjectFromWB}}
{{/WB}}
But I don’t know how to iterate my ArrayList (“result”) in same way (if it possible) like:
{{#WB}}
{{result}}
{{/WB}}
Please help.
I’m tried to do some thing like this, but it doesn’t work :
{{#WB}}
{{#result}}{{.}} {{/result}}
{{/WB}}
3