構成ファイル (datService.configuration) を持つ Angular サービス (DataService) をコンポーネント (ホーム) にロードしようとしています。Home コンポーネントで、DataServiceConfiguration をプロバイダー リストに追加しないと、次のエラーが発生します。
「キャッチされていない (約束): DataServiceConfiguration のプロバイダーがありません! (ホーム -> DataService -> DataServiceConfiguration)」
dataService.ts:
import { Injectable } from 'angular2/core';
import { Http, Response, Headers, HTTP_PROVIDERS } from 'angular2/http';
import 'rxjs/add/operator/map'
import { Observable } from 'rxjs/Observable';
import { DataServiceConfiguration } from './dataService.configuration';
@Injectable()
export class DataService {
private actionUrl: string;
private headers: Headers;
constructor(private _http: Http, private configuration: DataServiceConfiguration) {
...
}
dataService.configuration.ts:
import { Injectable } from 'angular2/core';
@Injectable()
export class DataServiceConfiguration {
public Server: string = "http://localhost/";
public ApiPath: string = "api/v1/";
public ApiUrl = this.Server + this.ApiPath;
constructor() {
}
}
ホーム.ts
import { DataService } from '../services/dataService';
import { DataServiceConfiguration } from '../services/dataService.configuration';
import {
Headers,
Http,
HTTP_BINDINGS,
Request,
RequestOptions,
RequestOptionsArgs,
HTTP_PROVIDERS
} from 'angular2/http';
@ng.Component({
selector: 'home',
templateUrl: './ng-app/components/public/home/home.html',
directives: [AlbumTile, ProdutoTile, Promocao, SuperOfertas, Banner, Categorias, DestaquesDaHome],
providers: [DataServiceConfiguration, DataService]
})
export class Home implements ng.OnInit {
public lista: models.Lista;
public pagina: number = 1;
paginas: number = 1;
constructor(private http: Http, private _dataService: DataService) {
}
}
DataService が既に読み込まれているため、ホーム コンポーネントに DataServiceConfiguration を追加する必要がある理由がわかりません。コンポーネントに DataService のみを追加する方法はありますか?