반응형
오류 로직
{{for data}}
{{if statement != ""}}
{{if #index == 0}}
Contents
{{/if}}
{{else}}
{{if #index == 0}}
Contents
{{/if}}
{{/if}}
{{/for}}
오류 이유
{{:#index}} 찍어 본 결과
index : For #index in nested block use #getIndex().
중첩된 블록 안에서 인덱스에 접근할 수 없다.
해결
https://github.com/BorisMoore/jsrender/issues/173
#index 말고 #getIndex() 사용.
※ 중첩된 블록이 아닌 경우에는 #index를 사용하는 것이 좋다.
반응형
'개발 환경 및 오류' 카테고리의 다른 글
IE에서 iframe pdf z-index 적용 안되는 이슈 (0) | 2018.12.07 |
---|---|
angularJs - 함수 사용 시 [$parse:sysntax] (0) | 2018.08.06 |
SHA(Secure Hash Algorithm, 안전한 해시 알고리즘) (0) | 2017.02.28 |
jpa update (0) | 2017.02.04 |
Consider defining a bean of type 'org.springframework.security.core.userdetails.UserDetailsService' in your configuration. (0) | 2017.02.01 |