javascript - jquery/js syntax array of objects -
i have web page using below syntax . generating table using array . can explain {#arrayofobjects} means , came from(jquery or js)?
{{#arrayofobjects}} <tr> <td class="some1">{{name}}</td> <td class="some2">{{label}}</td> <td class="{{some3}}">{{age}}</td> </tr> {{/arrayofobjects}}
this appears part of sort of html template , code parsing template expanding block of html series of html rows in table using arrayofobjects variable passed template rendering data rows.
this not actual html, template formatted file. output of template rendering actual html.
this guess, looks might handlebars template or mustache template or 1 of other similar template engines derived same basic scheme.
Comments
Post a Comment