我已在Angular2中定义了一个指令,我想让它可用于我的所有组件,而不必在每个组件中执行:directives: [MyDir]
。
我想应该有一种方法,因为实例*ngIf
随处可用。
答案 0 :(得分:5)
<强>更新强>
PLATFORM_DIRECTIVES
在2.0.0决赛中消失了。
见How to make directives and components available globally
<强>原始强>
在bootstrap()
提供
bootstrap(AppComponent, [
// for global directives
provide(PLATFORM_DIRECTIVES, {useValue: [MyDir], multi: true}),
// for global pipes
provide(PLATFORM_PIPES, {useValue: [RainbowizePipe], multi:true})
]);