【发布时间】:2017-07-27 11:34:35
【问题描述】:
我正在构建一个 Angular 2 应用程序,它使用服务来收集数据。 该服务确实包含以下逻辑:
/* ========== 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() {
}
我的组件的构造函数不是事件调用。 如何解决。
亲切的问候,
【问题讨论】:
-
我们能看到
ApplicationComponent -
如果将
Observable.empty()替换为Observable.of([])会发生什么 -
我已将组件添加为编辑,但它几乎是空的,所以我不明白你为什么需要它:)à
-
@ChristopherMoore 将其更改为
Observable.of([])确实有效。但是,你能解释一下我为什么会有这种行为吗? -
@Complexity - 让我添加一个包含更多细节的答案
标签: angular