"Handlebars"의 두 판 사이의 차이

오픈소스 비즈니스 컨설팅
둘러보기로 가기 검색하러 가기
잔글 (사용자가 "Handlebars" 문서를 보호했습니다 ([편집=관리자만 허용] (무기한) [옮기기=관리자만 허용] (무기한)))
잔글
3번째 줄: 3번째 줄:
  
  
== 개요 ==
+
== 사용법 ==
  
  
 +
<pre><script id="domain_list_content" type="text/x-handlebars-template">
 +
{{#if debug}}<th>Links</th>{{else}} ~ {{/if}}
 +
 +
{{#each domains}}
 +
&nbsp;  Map : {{@key}}, {{this}}
 +
{{/each}}
 +
</pre>
  
 
== 참고 문헌 ==
 
== 참고 문헌 ==
  
 
*http://programmingsummaries.tistory.com/381
 
*http://programmingsummaries.tistory.com/381

2016년 11월 11일 (금) 12:56 판

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}}
{{/each}}

참고 문헌