Angular 2提供了許多內置組件。如NgIf,NgFor,NgStyle,NgNonBindable ....一些組件用的 '*' 所使用的,如* ngIf和* ngFor:AngularJs 2.0內置組件 - 如何正確使用它們
<div *ngFor="item of items">
{{item}}
</div>
其中一些人與所用 '[]'如[ngStyle]和[ngClass]:(?分量視頻輸入)
<div [ngStyle]="{'background-color': 'yellow'}">Content</div>
和一些使用像 '角1':例如:
<div ngNonBindable>
Angular code snippet: {{content}}
</div>
有誰知道這裏爲什麼?有什麼區別?我如何記住正確使用它們的方式?
的可能的複製[是什麼在Angular2括號,括號和星號之間的差異?](http://stackoverflow.com/questions/35944749 /是什麼 - 是最差括號,括號 - 和星號功能於angular2間) –