0
私はちょうどrc.4からrc.5に移行しました。しかし、私がアプリケーション全体に対して定義した私のカスタムディレクティブは、もはや認識されません。角度2のプラットフォームの違い
私は私のapp.componentに持っていた:
NgModuleと今bootstrap(AppComponent, [
provide(PLATFORM_DIRECTIVES, {useValue: [CustomDirective1, CustomDirective2], multi: true})
])
私が持っているん:
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule
],
providers: [
provide(PLATFORM_DIRECTIVES, {useValue: [CustomDirective1, CustomDirective2], multi: true})
],
bootstrap: [AppComponent],
})
CustomDirective1とCustomDirective2が私のアプリにかかわらず、もはや認識されません。私がやっていなければならないことは他にありますか?
PLATFORM_DIRECTIVESはもう、その後どんな意味がありませんか? – Scipion
これはAPIドキュメントにもないようです。https://angular.io/docs/js/latest/api/#!?apiFilter=_directives –