Bunu yapabilir: Bunun yerine buEğik 2: yerine yapıcı enjeksiyon Mülkiyet enjeksiyon
export class BaseComponent {
protected config: IConfig;
@Inject(AppConfig) protected appConfig: AppConfig;
constructor()
{
this.config = this.appConfig.getConfig();
}
:
export class BaseComponent {
config: IConfig;
constructor(
private appConfig: AppConfig,
)
{
this.config = appConfig.getConfig();
}
gol yapıcı imza basitleştirmek için, bu nedenle tüm alt bileşeni değil appConfig öğelerini yapıcılarında belirtmeniz gerekir. Yani BaseComponent devralır bileşenleri şöyle görünecek şekilde:
@Component({
selector: 'sport-templates',
templateUrl: 'templates.component.html',
styleUrls: [ 'templates.component.scss' ],
encapsulation: ViewEncapsulation.None
})
export class SportTemplates extends BaseComponent implements OnInit {
constructor() {
super();
}
yerine böyle:
@Component({
selector: 'sport-templates',
templateUrl: 'templates.component.html',
styleUrls: [ 'templates.component.scss' ],
encapsulation: ViewEncapsulation.None
})
export class SportTemplates extends BaseComponent implements OnInit {
constructor(appConfig: AppConfig) {
super(appConfig);
}
@ açısal/çekirdek nedir? – PaladiN
Sorunun yanıtını şu adreste buldum: https://stackoverflow.com/questions/42461852/angular-2-inject-service-manually Teşekkürler. –