I found a tutorial on the Internet about angular examples. One of the examples I didn’t understand very well. I hope friends can give me some pointers:
ng-class="{true: 'year-interest', false: 'etc-text'}[$parent.$parent.$parent.$first]"
The tutorial URL is: http://each.sinaapp.com/angular/tutorial/ng-nested-repeat.html
Mainly because I don’t understand:
1. On what basis are true and false determined as bool?
2. What does the following $parent.$parent.$parent.$first mean? Does it refer to scope?
Hope friends can give me some advice.
true false is judged based on the following expression, that is,
$parent.$parent.$parent.$first
$first是$scope的一个属性,
true
代表是第一个元素,false
represents the non-first element$parent refers to the parent scope, $parent.$parent is the parent scope of the parent scope, and so on.
Why so many $parents?
Many directives in angular such as
ng-if
、ng-repeat
will create child scopes