Handlebars

오픈소스 비즈니스 컨설팅
Pnuskgh (토론 | 기여)님의 2016년 11월 11일 (금) 16:05 판
둘러보기로 가기 검색하러 가기

handlebars JavaScript Library를 정리 한다.



사용법

<script id="domain_list_content" type="text/x-handlebars-template">
{{#if debug}}<th>Links</th>{{else}} ~ {{/if}}

{{#each domains}}
    Map : {{@key}}, {{this}}
    List : {{@index}}, {{this}}
    @first, @last {{#unless @last}}~{{/unless}}    
{{/each}}

{{#each array as |value key|}}
    {{#each child as |childValue childKey|}}
        {{key}} - {{childKey}}. {{childValue}}
    {{/each}}
{{/each}}

참고 문헌