angular.js - 关于angular中$parent的疑问
世界只因有你
世界只因有你 2017-05-15 16:59:13
0
1
537

在网上找到一个讲angular例子的教程,其中一个例子,没怎么看懂,希望各位朋友能指点一二:

ng-class="{true: 'year-interest', false: 'etc-text'}[$parent.$parent.$parent.$first]"

教程网址在:http://each.sinaapp.com/angular/tutorial/ng-nested-repeat.html

主要是没看懂:
1、那个true和false是依据什么进行bool判断的?
2、后面的$parent.$parent.$parent.$first是什么意思,是指作用域吗?

望各位朋友能指点一二。

世界只因有你
世界只因有你

reply all(1)
曾经蜡笔没有小新
  1. true false is judged based on the following expression, that is, $parent.$parent.$parent.$first
    $first是$scope的一个属性,true代表是第一个元素,false represents the non-first element

  2. $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-ifng-repeat will create child scopes

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!