最近,我在 Angular 中使用了带有 else 块的*ngIf指令,并且想知道为什么在Angular 文档中的示例使用分号 ( ),因为这似乎在没有分号的情况下也可以工作。<div *ngIf="condition; else elseBlock">Content to render when condition is true.</div>
*ngIf
<div *ngIf="condition; else elseBlock">Content to render when condition is true.</div>
不使用分号有什么副作用吗?或者这只是一种更简洁的编码方式?
慕标5832272
HUX布斯
相关分类