Angular の「遅延読み込み機能モジュール」を例として使用しています: ライブ デモ
CustomersModuleは、顧客モジュールでテスト サービスを作成する遅延読み込みモジュールです。
const routes: Routes = [
{
path: 'customers',
loadChildren: () => import('./customers/customers.module').then(m => m.CustomersModule)
},
{
path: 'orders',
loadChildren: () => import('./orders/orders.module').then(m => m.OrdersModule)
},
{
path: '',
redirectTo: '',
pathMatch: 'full'
}
];
import { Injectable } from '@angular/core';
@Injectable()
export class TestService {
constructor() { }
getHeroes() { return "HEROES"; }
}
CustomersModule で、プロバイダーに追加します。
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { CustomersRoutingModule } from './customers-routing.module';
import { CustomersComponent } from './customers.component';
import {TestService} from "./test.service";
@NgModule({
imports: [
CommonModule,
CustomersRoutingModule
],
providers: [
TestService
],
declarations: [CustomersComponent]
})
export class CustomersModule { }
CustomersModule にはCustomersComponentもあり、この方法で TestService を使用できます。
import { Component, OnInit } from '@angular/core';
import {TestService} from "./test.service";
@Component({
selector: 'app-customers',
templateUrl: './customers.component.html',
styleUrls: ['./customers.component.css']
})
export class CustomersComponent implements OnInit {
testService: TestService;
constructor(test: TestService) {
this.testService = test;
}
ngOnInit() {
}
test(){
console.log(this.testService.getHeroes());
}
}
しかし、CustomersModule の providers 配列から TestService を削除し、TestService で providedIn を使用すると:
import { Injectable } from '@angular/core';
import {CustomersModule} from "./customers.module";
@Injectable({
providedIn: CustomersModule
})
export class TestService {
constructor() { }
getHeroes() { return "HEROES"; }
}
私はこのエラーを受け取りました:
core.js:6228 ERROR Error: Uncaught (in promise): ReferenceError: Cannot access 'CustomersModule' before initialization
ReferenceError: Cannot access 'CustomersModule' before initialization
at Module.CustomersModule (customers.component.ts:9)
at Module../src/app/customers/test.service.ts (test.service.ts:5)
at __webpack_require__ (bootstrap:84)
at Module../src/app/customers/customers.component.ts (customers-customers-module.js:78)
at __webpack_require__ (bootstrap:84)
at Module../src/app/customers/customers-routing.module.ts (customers-customers-module.js:29)
at __webpack_require__ (bootstrap:84)
at Module../src/app/customers/customers.module.ts (customers.component.ts:9)
at __webpack_require__ (bootstrap:84)
at ZoneDelegate.invoke (zone-evergreen.js:364)
at resolvePromise (zone-evergreen.js:798)
at resolvePromise (zone-evergreen.js:750)
at zone-evergreen.js:860
at ZoneDelegate.invokeTask (zone-evergreen.js:399)
at Object.onInvokeTask (core.js:41632)
at ZoneDelegate.invokeTask (zone-evergreen.js:398)
at Zone.runTask (zone-evergreen.js:167)
at drainMicroTaskQueue (zone-evergreen.js:569)
ここには循環的な依存関係があることを知っています。熱心にロードされたモジュールの場合、それは機能し、ツリーシェイクを有効にします。遅延読み込みモジュールでは、プロバイダー配列のみが NgModule で使用できるということですか?
これに関するガイドライン/ベストプラクティスはありますか?