【发布时间】:2018-10-03 07:21:25
【问题描述】:
我将一个 Angular 项目从 v5 迁移到 v6。
为了更新我已经运行的所有导入rxjs-5-to-6-migrate:
npm install -g rxjs-tslint
rxjs-5-to-6-migrate -p src/tsconfig.app.json
但现在我有如下错误:
src/app/products/product.service.ts(54,4): error TS2322: Type 'Observable<{}>' is not assignable to type 'Observable<{ count: number; next: string; previous: string; results: any[]; }>'.
Type '{}' is not assignable to type '{ count: number; next: string; previous: string; results: any[]; }'.
Property 'count' is missing in type '{}'.
product.service.ts:
import { Injectable } from '@angular/core';
//import { Http, Response, Headers, RequestOptions } from '@angular/http';
import { HttpClient, HttpHeaders, HttpErrorResponse } from '@angular/common/http';
import { Observable, of } from 'rxjs';
import { ErrorObservable } from 'rxjs/observable/ErrorObservable';
import { catchError, map, tap, finalize } from 'rxjs/operators';
import { Product } from './product';
import { SpinnerService } from './../utilities/spinner/spinner.service';
import { environment } from '../../environments/environment';
const endpoint = environment.apiHost+'/api/products/' //'http://127.0.0.1:8000/api/products/'
@Injectable()
export class ProductService {
/* Caching few data that does not change so often */
private productTypes: any[];
private departments: any[];
private authors: any[];
private colors: any[];
private sizeRuns: any[];
constructor(private http: HttpClient, private _spinnerService: SpinnerService) { }
list(params?): Observable<{count:number, next:string, previous:string, results: any[]}> {
return this.http.get<{count:number, next:string, previous:string, results: any[]}>(endpoint, {params: params})
.pipe(
catchError(this.handleError<any>('Retrieving products'))
);
}
/**
* Handle Http operation that failed.
* Let the app continue.
* @param operation - name of the operation that failed
* @param result - optional value to return as the observable result
*/
private handleError<T>(operation='Operation', result?: T) {
return (error: any): ErrorObservable | Observable<T> => {
// TODO: send the error to remote logging infrastructure
console.error(error); // log to console instead
// TODO: better job of transforming error for user consumption
console.log(`${operation} failed: ${error.message}`);
// Let the app keep running by returning an Observable with empty result.
//return of(result as T);
return new ErrorObservable(error);
};
}
}
我在 StackOverflow 上看到了其他类似的问题,但我仍然不明白如何解决。
我可能可以将接口{count:number, next:string, previous:string, results: any[]} 更改为简单的any,但我并不想这样做。
有什么解决办法吗?
UPDATE1:使用接口
interface PaginatedList {
count: number;
next: string;
previous: string;
results: any[];
}
@Injectable()
export class ProductService {
/* Caching few data that does not change so often */
private productTypes: any[];
private departments: any[];
private authors: any[];
private colors: any[];
private sizeRuns: any[];
constructor(private http: HttpClient, private _spinnerService: SpinnerService) { }
list(params?): Observable<PaginatedList> {
this._spinnerService.show('productListSpinner');
return this.http.get<PaginatedList>(endpoint, {params: params})
.pipe(
catchError(this.handleError<any>('Retrieving products')),
finalize(() => this._spinnerService.hide('productListSpinner'))
);
}
/**
* Handle Http operation that failed.
* Let the app continue.
* @param operation - name of the operation that failed
* @param result - optional value to return as the observable result
*/
private handleError<T>(operation='Operation', result?: T) {
return (error: any): ErrorObservable | Observable<T> => {
// TODO: send the error to remote logging infrastructure
console.error(error); // log to console instead
// TODO: better job of transforming error for user consumption
console.log(`${operation} failed: ${error.message}`);
// Let the app keep running by returning an Observable with empty result.
//return of(result as T);
return new ErrorObservable(error);
};
}
}
错误:
src/app/products/product.service.ts(61,4): error TS2322: Type 'Observable<{}>' is not assignable to type 'Observable<PaginatedList>'.
Type '{}' is not assignable to type 'PaginatedList'.
Property 'count' is missing in type '{}'.
UPDATE2:
检查我的错误,我认为ErrorObservable 导致了其他错误:
src/app/products/product.service.ts(325,26): error TS2314: Generic type 'ErrorObservable<T>' requires 1 type argument(s).
【问题讨论】:
-
@Satpal 我试过了,但仍然有错误。请查看我的更新
标签: angular rxjs angular6 rxjs6