rxjs flatmap缺失

时间:2016-07-20 12:46:49

标签: rxjs observable reactive-extensions-js

我尝试链接多个rx.js可观察对象并传递数据。 Flatmap应该是拟合运算符,但导入

import { Observable } from 'rxjs/Observable';

未找到:

Error TS2339: Property 'flatmap' does not exist on type 'Observable<Coordinates>'

使用了rx.js的版本5.0.0-beta.6

public getCurrentLocationAddress():Observable<String> {
    return Observable.fromPromise(Geolocation.getCurrentPosition())
      .map(location => location.coords)
      .flatmap(coordinates => {
        console.log(coordinates);
        return this.http.request(this.geoCodingServer + "/json?latlng=" + coordinates.latitude + "," + coordinates.longitude)
          .map((res: Response) => {
                       let data = res.json();
                       return data.results[0].formatted_address;
              });
      });
  }

6 个答案:

答案 0 :(得分:103)

事实证明答案很简单:

在此版本的rxjs中调用运算符<context:component-scan base-package="org.example"/>

编辑:

此外,您可能必须使用mergeMap

答案 1 :(得分:67)

在我的情况下,我需要导入mergeMap的扩充:

import 'rxjs/add/operator/mergeMap';

由于flatMap是mergeMap的别名,导入上面的模块将使您能够使用flatMap。

答案 2 :(得分:15)

使用RxJS 5.5+,flatMap运算符已重命名为mergeMap。相反,您现在应该将mergeMap运算符与pipe结合使用。

您仍然可以使用别名FlatMap来使用flatMap。

  

RxJS v5.5.2是Angular 5的默认依赖版本。

对于您导入的每个RxJS运算符,包括mergeMap,您现在应该从'rxjs /运算符'导入并使用管道运算符。

在Http请求Observable

上使用mergeMap的示例
import { Observable } from 'rxjs/Observable';
import { catchError } from 'rxjs/operators';
...

export class ExampleClass {
  constructor(private http: HttpClient) {
    this.http.get('/api/words').pipe(
      mergeMap(word => Observable.of(word.join(' '))
    );
  }
  ...
}

请注意,flatMap已替换为mergeMap,而pipe运算符用于组合运算符,其方式与您用于点链的方式类似

有关详细信息,请参阅有关可运营商的rxjs文档 https://github.com/ReactiveX/rxjs/blob/master/doc/lettable-operators.md

答案 3 :(得分:6)

正确导入应如下所示:

import { Observable } from 'rxjs/Observable';
import 'rxjs/add/operator/mergeMap';

导入模块mergeMap可让您在代码中使用flatMap

当您导入代码import { Observable } from 'rxjs/Rx';时,不需要额外的mergeMap导入,但在AoT编译期间您可能会遇到错误。

ERROR in ./node_modules/rxjs/_esm5/observable/BoundCallbackObservable.js
Module build failed: TypeError: Cannot read property 'type' of undefined

答案 4 :(得分:0)

快速更新-2019年5月

使用 rxjs v6.5.1

作为mergeMap运算符导入,例如// p

import { Observable, from, of } from "rxjs";
import { map, filter, mergeMap } from "rxjs/operators";

然后与新的pipe功能结合使用,例如// p

var requestStream = of("https://api.github.com/users");
var responseStream = requestStream.pipe(
  mergeMap(requestUrl => {
    console.log(requestUrl);
    ... // other logic
    return rp(options);  // returns promise
  })
);

答案 5 :(得分:-1)

它对我有用!

$scope