从Angular2服务返回一个空的Observable

时间:2017-03-07 10:04:01

标签: angular

我正在构建一个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() { 

    }

我的组件的构造函数不是调用的事件。 如何解决这个问题。

亲切的问候,

2 个答案:

答案 0 :(得分:10)

Observable.empty()替换为Observable.of([])of超过empty的权限是官方Angular Tour of Heroes教程用于返回空的observable的内容,也是我在所有应用程序中使用的内容。

它们之间的区别似乎是返回任何内容,还是空数组。

来自官方rxjs文档:

Observable.empty()

  

创建一个Observable,它不向Observer发送任何项目,并立即发出完整的通知。

Observable.of()

  

创建一个Observable,它会一个接一个地发出一些你指定为参数的值,然后发出一个完整的通知。

答案 1 :(得分:3)

解析器尝试订阅给定的Observable并将Observable序列的第一个结果传递给组件(实际上是ActivatedRoute对象)。

但是因为你的Observable在发出结果之前触发了已完成的事件,所以解析器不会得到结果。这就是你的错误所在。

您必须返回Observable.of(null)Observable.of([])或类似内容。 然后,您可以处理组件中的空输入。

This页面包含有关Observable.empty()功能的更多信息。