Angular 2ドキュメント*およびテンプレートでは、* ngIf、* ngSwitch、* ngForをng-templateタグに展開できることがわかっています。私の質問は:
私が考えるngIf
かngFor
なし*
にも翻訳され、角度のエンジンによってテンプレートタグに拡張することができます。
次のコード
<hero-detail *ngIf="currentHero" [hero]="currentHero"></hero-detail>
と同じになります
<ng-template [ngIf]="currentHero">
<hero-detail [hero]="currentHero"></hero-detail>
</ng-template>
では、なぜ*
角度2で奇妙な記号アスタリスク()をわざわざ設計するのでしょうか。
<template>
タグは表示されませんでした*
。