我想在Redux的幫助下去除組件對Angular服務的依賴。如何從Action中爲Angular 2服務注入提供者?
基本上,流量元器件 - >動作 - >服務
在我想使用@角/芯,其被建議在構造要傳遞的HTTP模塊的服務:
export class SampleService {
constructor(public http: Http) {}
}
而我從行動調用服務,它不會得到http提供程序,因爲我沒有http提供程序的實例。
export default class SampleAction {
private _projectService;
constructor() {
this._sampleService = new SampleService();
}
}
如何將http提供程序注入服務?
謝謝Vidhya!它使用這種方法。 – Sanjeev