Angular 6 RxJS6类型“ void”不能分配给类型“ ObservableInput <{}>”

时间:2019-04-05 20:29:19

标签: angular observable rxjs6

我正在将代码转换为使用RxJS6语法来使用管道和地图,但出现错误。

error TS2345: Argument of type '(error: any) => void' is not assignable to parameter of type '(err:
any, caught: Observable<void>) => ObservableInput<{}>'.
  Type 'void' is not assignable to type 'ObservableInput<{}>'.

现有代码工作正常,但我遇到的问题是在返回结果之前,将调用其他方法。因此,据我了解,使用管道和地图 将解决此问题。 这是我最初的代码:

this._reportingService.GetProjectReportsData(data).subscribe(result => {
    if (result != null) {
        this.reportData = result;
    }

}, error => {
    this.ErrorMessage('Unable to load workbook ' + error.toString());
    this._reportingService.isLoading = false;
});

这是我要转换为使用管道和地图的代码:

我已经与其他进口商品一起进口

import { Observable, of, throwError } from 'rxjs';
import { map, catchError, retry } from 'rxjs/operators';

并在方法中(已修改;删除了this.error),请指导如何为errorMessage添加代码:

this._reportingService.GetProjectReportsData(data).pipe(
    map(result => {
        if (result != null) {

  this.reportData = result;


        }
    }))
    .subscribe();

我的服务班级:

import { Injectable } from '@angular/core';
import { Observable } from 'rxjs';
import { HttpClient, HttpErrorResponse } from '@angular/common/http';
import { BehaviorSubject } from 'rxjs/BehaviorSubject';

import { map, tap, catchError } from 'rxjs/operators';
import 'rxjs/add/operator/catch';
import 'rxjs/add/observable/throw';


@Injectable({
    providedIn: 'root'
})
export class ReportingService extends BehaviorSubject<any[]>{

    constructor(private http: HttpClient) {

    super(null);
    }

    public GetProjectReportsData(data: any): Observable<any> {
        return this.http.post(this.GetProjectReportDataUrl, data)
            .pipe(map(res => <any[]>res))
            .pipe(catchError(this.handleError));
    }
    private handleError(error: any) {

        let errMsg = (error.message) ? error.message :
            error.status ? `${error.status} - ${error.statusText}` : 'Server error';
        return Observable.throw(errMsg);
    }

}

3 个答案:

答案 0 :(得分:1)

根据我的说法,双管道链接会产生问题。

尝试这样。

 public GetProjectReportsData(data: any): Observable<any> {
        return this.http.post(this.GetProjectReportDataUrl, data)
            .pipe(
               map(res => <any[]>res),
               catchError(this.handleError)
             );
    }

答案 1 :(得分:1)

我认为问题是由于您缺少map运算符中的return语句。

import { of } from 'rxjs';

this._reportingService.GetProjectReportsData(data).pipe(
    map(result => {
        if (result != null) {
           return this.reportData = result;
        }
        return of(null);
    }))
    .subscribe();

也不确定为什么要使用此验证(结果!= null)。在那里要小心。

答案 2 :(得分:0)

可从catchError返回:

import { of } from 'rxjs';

...
catchError(error => of(this.ErrorMessage('Unable to load workbook ' + error.toString()))
...