このコードはコンパイルされ、Angular 6 で動作しました:
import { of } from 'rxjs';
import { switchMap } from 'rxjs/operators';
switchMap((term) => {
if (term.trim().length > 3)
return this.searchEntries(term); // <- returns Observable<void>
return of([]);
})
Angular 7 にアップグレードした後、次のコンパイル時エラーが発生します。
[ts]
Argument of type '(term: any) => Observable<void> | Observable<any[]>' is not assignable to parameter of type '(value: any, index: number) => ObservableInput<void>'.
Type 'Observable<void> | Observable<any[]>' is not assignable to type 'ObservableInput<void>'.
Type 'Observable<any[]>' is not assignable to type 'ObservableInput<void>'.
Type 'Observable<any[]>' is not assignable to type 'Iterable<void>'.
Property '[Symbol.iterator]' is missing in type 'Observable<any[]>'.
角度バージョン:
$ ng version
Angular CLI: 7.0.2
Node: 10.12.0
OS: linux x64
Angular: 7.0.0
... animations, cdk, common, compiler, compiler-cli, core, forms
... http, language-service, platform-browser
... platform-browser-dynamic, router
Package Version
-----------------------------------------------------------
@angular-devkit/architect 0.10.2
@angular-devkit/build-angular 0.10.2
@angular-devkit/build-optimizer 0.10.2
@angular-devkit/build-webpack 0.10.2
@angular-devkit/core 7.0.2
@angular-devkit/schematics 7.0.2
@angular/cli 7.0.2
@ngtools/webpack 7.0.2
@schematics/angular 7.0.2
@schematics/update 0.10.2
rxjs 6.3.3
typescript 3.1.3
webpack 4.19.1
switchMap の ObservableInput を返す必要があるように見えますが、どうすればよいですか?
どんな助けでも大歓迎です。