angular定义数组_Angular使用技巧:NgIf 非常规用法
NgIf 是angular中使用频率非常高的指令,它的作用简单点说就是叛定一个表达式,并根据叛定结果匹配相应模板。 NgIf 基本用法 <div *ngIf="condition; then thenBlock else elseBlock"></div><ng-template #thenBlock>Content to render when condit...