本文介绍了如何使 ngIf 指令在所有项目中全局可见?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个代码 <div class="flex-container" *ngIf="mail">一些数据 </div>
我有一个错误无法绑定到ngIf",因为它不是div"的已知属性.
我该如何解决?
推荐答案
在根模块中导入BrowserModule
,在其他要使用通用指令的模块中导入CommonModule
.
Import BrowserModule
in the root module and CommonModule
in other modules where you want to use common directives.
@NgModule({
imports: [BrowserModule],
...
})
class AppModule {}
和
@NgModule({
imports: [CommonModule],
// Now MyComponent has access to ngIf
declarations: [MyComponent]
...
})
class OtherModule {}
BrowserModule
导出CommonModule
,这样就不需要直接在根模块中导入CommonModule
了.
BrowserModule
exports CommonModule
, this way it's not necessary to import CommonModule
directly in the root module.
这篇关于如何使 ngIf 指令在所有项目中全局可见?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!