私はサービスを使ってデータを収集するAngular 2アプリケーションを構築しています。 サービスは、次のロジックが含まれていない:Angular2サービスから空のObservableを返します。
/* ========== CORE COMPONENTS ========== */
import { Injectable } from '@angular/core';
import { Http, Response } from '@angular/http';
import { Observable } from 'rxjs/Observable';
import 'rxjs/Rx';
import 'rxjs/add/operator/map';
import 'rxjs/add/operator/catch';
/* ========== MODELS ========== */
import { IApplicationViewModel } from './models/application.model';
/* ========== CONSTANTS ========== */
import { LogzillaServerConfiguration } from '../../app.configuration';
@Injectable()
export class ApplicationService {
private getAllEndpoint = LogzillaServerConfiguration.host + '/api/administration/application/getAll';
// Initializes a new instance of the 'ApplicationService'.
constructor(private http: Http) { }
// Get all the 'logzilla' applications.
getApplications(): Observable<IApplicationViewModel[]> {
return this.http.get(this.getAllEndpoint)
.map((response: Response) => <IApplicationViewModel[]>response.json().model)
.catch(this.handleError);
}
// Handle an error that occured while retrieving the data.
// This method will throw an error to the calling code.
private handleError(error: Response) {
return Observable.empty();
}
}
何このサービスは、エンドポイントからデータを取得し、エラーが発生したときに、私は空のObservable
を返すよ、モデルにマップされません。
また、アクティブルートが変更される前に、サービスからデータをロードするために使用されるリゾルバもあります。 このリゾルバは、以下の論理含まれていない:
/* ========== CORE COMPONENTS ========== */
import { Injectable } from '@angular/core';
import { Resolve, ActivatedRouteSnapshot } from '@angular/router';
/* ========== APPLICATION SERVICES ========== */
import { ApplicationService } from './application.service';
/* ========== MODELS ========== */
import { IApplicationViewModel } from './models/application.model';
import { IApplicationLogLevel } from './models/applicationLevel.model';
// Defines the 'resolver' which is used to resolve the applications.
@Injectable()
export class ApplicationResolver implements Resolve<IApplicationViewModel[]> {
// Initializes a new instance of the 'ApplicationResolver'.
constructor(private applicationService: ApplicationService) { }
// Get all the registered applications.
resolve(route: ActivatedRouteSnapshot) {
return this.applicationService.getApplications();
}
}
私のルートの定義は次のとおりです。ただし
{ path: 'applications', component: ApplicationComponent, pathMatch: 'full', resolve: {
application: ApplicationResolver
}},
、私は/applications
を参照するとき、私はエラーUncaught (in promise): Error: no elements in sequence.
で迎えていますが。
編集:追加コンポーネント
@Component({
selector: 'logzilla-applications',
templateUrl: './src/app/pages/applications/application.template.html'
})
@Injectable()
export class ApplicationComponent implements OnInit {
hasApplications: boolean;
applications: IApplicationViewModel[];
errorMessage: string;
// Initializes a new instance of the 'ApplicationComponent'.
constructor (private route: ActivatedRoute) {
console.log('I am here.');
}
// This method is executed when the component is loaded.
ngOnInit() {
}
私のコンポーネントのコンストラクタが呼び出されたイベントではありません。 これをどのように解決できますか。
種類について、
は、我々が見ることができるとあなたは 'Observable.emptyを(置き換えるとどう' ApplicationComponent' – Smit
) '' Observable.of([]) ' –
私が編集されたコンポーネントを追加しましたが、それはほとんど空ですが、だから私はあなたがそれを必要とする理由は分かりません:) – Complexity