4
我有一個代碼<div class="flex-container" *ngIf="mail"> Some data </div>
如何使ngIf指令在全部項目中全局可見?
,我有一個錯誤Can't bind to 'ngIf' since it isn't a known property of 'div'.
我怎樣才能解決這個問題?
我有一個代碼<div class="flex-container" *ngIf="mail"> Some data </div>
如何使ngIf指令在全部項目中全局可見?
,我有一個錯誤Can't bind to 'ngIf' since it isn't a known property of 'div'.
我怎樣才能解決這個問題?
導入BrowserModule
在根模塊和CommonModule
在其他模塊,你想使用通用指令。
@NgModule({
imports: [BrowserModule],
...
})
class AppModule {}
和
@NgModule({
imports: [CommonModule],
// Now MyComponent has access to ngIf
declarations: [MyComponent]
...
})
class OtherModule {}
BrowserModule
出口CommonModule
,這樣就沒有必要根模塊中直接導入CommonModule
。