我与提供者有一些困难。我尝试在组件中导入新的自定义提供程序,但它不起作用。第二个提供者基于我制作的第一个提供者,并且效果很好......
这是我的提供者:
import { Injectable} from "@angular/core";
import { Router, Routes } from '@angular/router';
import ... // All components needed
@Injectable()
export class RoutesHelper {
private userRoutes: Routes = [
{ path: '' , component: HeaderComponent, outlet: 'header' },
...
];
constructor(
private router:Router
) {}
public load() {
this.router.resetConfig(this.userRoutes);
}
}
这是我的“问题组件”
import { Component, OnInit } from '@angular/core';
import { RoutesHelper } from '../_utils/routes.helper';
@Component({
selector: 'questions-list',
templateUrl: './app/question/questions.component.html',
providers: [RoutesHelper]
})
export class QuestionsComponent implements OnInit {
constructor(private routes:RoutesHelper) {}
ngOnInit() {
this.routes.load();
}
}
但我有这个错误:“QuestionsComponent”的无效提供者 - 只允许提供者和类型的实例,得到:[?未定义?]
我不知道为什么我得到“未定义”对象,我也没有这个错误。
谢谢你的帮助。