标签:boolean 样式 on() info 部分 java 文件中 html false
ngFor
作用:像 for 循环一样,可以重复的从数组中取值并显示出来。
// .ts this.userInfo = [‘张三‘, ‘李四‘, ‘王五‘]; // .html <div class="ui list" *ngFor="let username of userInfo"> <div class="item">{{username}}</div> </div>
讲解:
他的语法是 *ngFor="let username of userInfo"
,其中 userInfo 是从中取值的数组,username 是每次从中取出来的值。然后在这个标签里面的内容就会重复执行,并通过双向绑定,将 username 显示出来。
ngIf
作用:根据条件决定是否显示或隐藏这个元素。
// .html <div *ngIf="false"></div> <div *ngIf="a > b"></div> <div *ngIf="username == ‘张三‘"></div> <div *ngIf="myFunction()"></div>
讲解:
ngSwitch
作用:防止条件复杂的情况导致过多的使用 ngIf。
// .html <div class="container" [ngSwitch]="myAge"> <div *ngSwitchCase="‘10‘">age = 10</div> <div *ngSwitchCase="‘20‘">age = 20</div> <div *ngSwitchDefault="‘18‘">age = 18</div> </div>
讲解:
[ngSwitch] 先与目标进行绑定,ngSwitchCase 列出每个可能性,ngSwitchDefault 列出默认值。
ngStyle
作用:可以使用动态值给特定的 DOM 元素设定 CSS 属性。
// .ts backColor: string = ‘red‘; // .html <div [style.color]="yellow"> 你好,世界 </div> <div [style.background-color]="backColor"> 你好,世界 </div> <div [style.font-size.px]="20"> 你好,世界 </div> <div [ngStyle]="{color: ‘white‘, ‘background-color‘: ‘blue‘, ‘font-size.px‘: ‘20‘}"> 你好,世界 </div>
讲解:
ngClass
作用:动态地设置和改变一个给定 DOM 元素的 CSS类。
// .scss .bordered { border: 1px dashed black; background-color: #eee; } // .ts isBordered: boolean = true; // .html <div [ngClass]="{bordered: isBordered}"> 是否显示边框 </div>
讲解:
class="bordered"
。
ngNonBindable
作用:告诉 Angular 不要绑定页面的某个部分。
.html <div ngNonBindable> {{我不会被绑定}} </div>
讲解:
使用了 ngNonBindable ,花括号就会被当做字符串一起显示出来。
原文链接:http://www.jianshu.com/p/4cc3a04ca83a
标签:boolean 样式 on() info 部分 java 文件中 html false
原文地址:http://www.cnblogs.com/zhumeiming/p/7294971.html