我有一个代码<div class="flex-container" *ngIf="mail"> Some data </div>
我有一个错误Can't bind to 'ngIf' since it isn't a known property of 'div'.
我该如何解决?
我有一个代码<div class="flex-container" *ngIf="mail"> Some data </div>
我有一个错误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
export CommonModule
,这样就不需要CommonModule
直接在根模块中导入。