9
我想在我的組件中顯示不同的模板。只有一個會顯示。 如果hasURL
是true
,我想顯示<a></a>
。 如果hasURL
是false
,我想顯示<button></button>
。如何在Angular 2的相同組件中使用多個ng-content?
問題如果hasURL爲false,組件顯示按鈕,但ng內容爲空。因爲它是第一個「已讀a></a>
有沒有辦法解決這個討好?
<a class="bouton" href="{{ href }}" *ngIf="hasURL">
<ng-content>
</ng-content>
</a>
<button class="bouton" *ngIf="!hasURL">
<ng-content>
</ng-content>
</button>
謝謝!
謝謝!它效果很好。我仍然使用Angular 2而不使用Angular 4,所以我必須使用''而不是'' –
Steffi