当要加载的资源在assets里时,路径可以直接写assets/xxx/xxx
条件判断*ngIf
[ngSwitch]="orderStatus"
*ngSwitchCase="1"
动态样式
[ngClass]='{"blue":flag,"red":!flag}'
[ngStyle]="{'color':'red'}" [ngStyle]="{'color':sss}"
(click)=”xxx()"绑定点击事件
<input type="text" (keydown)="xxx()"> 监听键盘事件
表单才会双向数据绑定,首先得引入formModule
[(ngModule)]="xxx"
id等属性字符串可以拼接。如:[id]=" 'check'+'key' "
check也可以用双向数据绑定。同上。
textarea也可以双向数据绑定,同上。