"Handlebars"의 두 판 사이의 차이

오픈소스 비즈니스 컨설팅
둘러보기로 가기 검색하러 가기
잔글
잔글
13번째 줄: 13번째 줄:
 
<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}}
 +
{{#if @index % 2 == 0}}
  
 
{{#each domains}}
 
{{#each domains}}
28번째 줄: 29번째 줄:
 
articles.[10].[#comments]는 &nbsp;articles[10]['#comments']를 표시 한다.
 
articles.[10].[#comments]는 &nbsp;articles[10]['#comments']를 표시 한다.
  
 
+
<font face="sans-serif, Arial, Verdana, Trebuchet MS"><span style="white-space: normal;">
</pre>
+
</span></font></pre>
  
 
== 참고 문헌 ==
 
== 참고 문헌 ==
  
 
*[http://programmingsummaries.tistory.com/381 http://programmingsummaries.tistory.com/381]
 
*[http://programmingsummaries.tistory.com/381 http://programmingsummaries.tistory.com/381]

2016년 11월 11일 (금) 18:17 판

handlebars JavaScript Library를 정리 한다.



사용법

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

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

articles.[10].[#comments]는  articles[10]['#comments']를 표시 한다.

<font face="sans-serif, Arial, Verdana, Trebuchet MS"><span style="white-space: normal;">
</span></font>

참고 문헌