ng-bind中要绑定$scope中的值,就用不写{{}}ng-src中要绑定$scope中的值,就要写{{}}ng-checked中 判断true false也不用写{{}}ng-class中,要判断true false还要写{}
什么时候要{{}},什么时候要{},这个有什么规则么
欢迎选择我的课程,让我们一起见证您的进步~~
You remember one thing, as long as it is ng-开关的指令,大都是不需要写的。ng-srcexcept.
ng-
ng-src
ng-src 为什么要呢?主要是因为不能直接用 src ,它会直接请求,不等待 Angular 解析 {{}} ,而 ng-src Mainly to achieve effects similar to this:
src
{{}}
<img ng-src="http://www.gravatar.com/avatar/{{hash}}" alt="Description" />
So, that’s it.
ng-class实际上是需要你提供一个对象,所以使用 {} to construct.
ng-class
{}
You remember one thing, as long as it is
ng-
开关的指令,大都是不需要写的。ng-src
except.ng-src
为什么要呢?主要是因为不能直接用src
,它会直接请求,不等待 Angular 解析{{}}
,而ng-src
Mainly to achieve effects similar to this:So, that’s it.
ng-class
实际上是需要你提供一个对象,所以使用{}
to construct.