Что не так с синтаксисом здесь mergeMap(names => names),
?
getIds(): void {
this.myservice
.getIds.pipe( mergeMap(id => this.getNames(id)),
mergeMap(names => names), toArray() )
}
myservce.ts имеет следующее:
getIds():Observable<Ids>{
const url = 'http://localhost:4000';
return this.http
.post(url, '')
.map(({ Ids }: any) => Ids.map(item => ({Id: item.Id,
Name: item.Name }))) as Observable<Ids>;
}
getNames(data: Ids):Observable<any[]> {
const url ='http://localhost:5000';
return this.http
.post(url,data)
.pipe(map(({ Results }: any) => Results[0].results.map(item => ({Id: item.ID, Name: item.Name }))));
}
Ошибка компилятора (как новичку я не могу понять):
ERROR in src/app/cvetable/mcomponent.ts(132,19): error TS2345:
Argument of type '(names: {}) => {}' is not assignable to parameter
of type '(value: {}, index: number) => ObservableInput<any[]>'.
Type '{}' is not assignable to type 'ObservableInput<any[]>'.
Type '{}' is not assignable to type 'Iterable<any[]>'.
Property '[Symbol.iterator]' is missing in type '{}'.