2016-06-30 117 views

回答

1

不需要輸入ngSwitch角2去做默認

<span [ngSwitch]="Foo"> 
     <template *ngSwitchCase="1"> Yes</template> 
     <template *ngSwitchCase="0">No</template> 
    </span> 

更多see doc for *ngSwitchCase

即使要導入

下工作
import {NgSwitch, NgSwitchCase, NgSwitchDefault} from '@angular/common'; 

指令

directives: [NgSwitch, NgSwitchCase, NgSwitchDefault] 
相關問題