(AngularJS) 디렉티브 내에서의 스코프 속성

ng-repeat 디렉티브의 매 인스턴스마다 새롭게 지역(local) 스코프 객체에는 특별한 속성들이 존재한다.
$index, $first 그리고 $even 등의 속성이 바로 그것이다.

<ul>
 <li ng-repeat ="item in items"
                      ng-click ="ctrl.currentIndex == $index">
                         <h2> {{item.title}} </h2>
                    <p ng-if ="ctrl.currentInedx == $index">
                          {{item.longDescription}}
                   </p>
         </li>
</ul>



댓글

이 블로그의 인기 게시물

(네트워크)폴링방식 vs 롱 폴링방식

(ElasticSearch) 결과에서 순서 정렬

(18장) WebSocekt과 STOMP를 사용하여 메시징하기