1
我正在使用angular2我只是想根據ngSwitch顯示我的數據,但它在下面拋出一個錯誤是我的代碼。我正在使用angular2我只是想根據ngSwitch顯示我的數據
<div ngSwitch="employee.data.status">
<div *ngSwitchCase ="-1">
<span>Not started</span>
</div>
<div *ngSwitchCase ="0">
<span>In progress</span>
</div>
</div>
我錯過了什麼?
https://angular.io/docs/ts/latest/api/common/index/NgSwitch-directive.html –