は、私がこれを行うことができます。これに代えて角度2:代わりに、コンストラクタ・インジェクションのプロパティ注射
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();
}
目標は、コンストラクタの署名を簡単にすることであるので、すべての子コンポーネントをないようにコンストラクタにappConfigを指定する必要があります。したがって、このように見えるようにBaseComponentから継承コンポーネント:
@Component({
selector: 'sport-templates',
templateUrl: 'templates.component.html',
styleUrls: [ 'templates.component.scss' ],
encapsulation: ViewEncapsulation.None
})
export class SportTemplates extends BaseComponent implements OnInit {
constructor() {
super();
}
代わりに、このような:
@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);
}
@角度/コアにありますか? – PaladiN
ここで私の質問の答えが見つかりました: https://stackoverflow.com/questions/42461852/angular-2-inject-service-manuallyありがとうございます。 –