"Handlebars"의 두 판 사이의 차이

오픈소스 비즈니스 컨설팅
둘러보기로 가기 검색하러 가기
잔글
잔글
3번째 줄: 3번째 줄:
  
  
== 사용법 ==
+
*Site : 
 +
*Manual
 +
**https://zordius.github.io/HandlebarsCookbook/
 +
*License
 +
 
  
  
 +
== 사용법 ==
 
<pre><script id="domain_list_content" type="text/x-handlebars-template">
 
<pre><script id="domain_list_content" type="text/x-handlebars-template">
 
{{#if debug}}<th>Links</th>{{else}} ~ {{/if}}
 
{{#if debug}}<th>Links</th>{{else}} ~ {{/if}}
  
 
{{#each domains}}
 
{{#each domains}}
&nbsp;  Map : {{@key}}, {{this}}
+
&nbsp;  Map&nbsp;: {{@key}}, {{this}}
 
{{/each}}
 
{{/each}}
 
</pre>
 
</pre>
 
 
== 참고 문헌 ==
 
== 참고 문헌 ==
  
*http://programmingsummaries.tistory.com/381
+
*[http://programmingsummaries.tistory.com/381 http://programmingsummaries.tistory.com/381]

2016년 11월 11일 (금) 13:13 판

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}}

참고 문헌