【发布时间】:2018-08-01 21:39:02
【问题描述】:
我有一个组件 HomeComponent,我有两个服务:AnimalService 和 DogService
DogService 像这样扩展 AnimalService :
@Injectable({providedIn: 'root'})
export class AnimalService {
constructor() {}
move(): any {
console.log('move animal');
}
}
@Injectable({providedIn: 'root'})
export class DogService extends AnimalService {
constructor() {
super();
}
scream(): any {
console.log('il crie');
}
}
然后我想通过在我的组件中调用尖叫函数来使用它:
@Component({
selector: 'jhi-home',
templateUrl: './home.component.html',
styleUrls: ['home.scss']
})
export class HomeComponent implements OnInit {
constructor(private dogService: DogService) {}
ngOnInit() {
this.dogService.scream(); // the error here : scream is not a function
}
}
但我有以下错误:
this.dogService.scream is not a function
也许有角度的微妙之处,因为 Injectable 或类似的东西,我知道 DogService 的构造函数没有被调用,因为我的网络浏览器知道它是一个 AnimalService。如果我执行 dogService = New DogService 而不是在构造函数中声明它,情况并非如此。但我不明白为什么。
有什么想法吗?
【问题讨论】:
-
您是否尝试在
module而不是providedIn标志中注册您的服务?
标签: javascript angular typescript inheritance angular-services