我无法以服务角度导入地图

时间:2018-07-18 16:35:00

标签: angular typescript

我使用角度6,并且我无法导入操作员地图,我尝试导入两种方式:

使用来自'rxjs / operators'的import {map};但是从未使用过此操作符的Visual Studio代码,而我给出了此错误:

enter image description here

如果我这样输入:import'rxjs / add / operator / map';

我也给出错误

enter image description here

enter image description here

我如何导入该操作员图?

2 个答案:

答案 0 :(得分:1)

如果使用Angular 6,则使用RxJ 6。 对于RxJ 6,您需要像这样使用map

import { map } from 'rxjs/operators';

return this.http.post('...')
  .pipe(
    map((...) => {...})
  );

更多https://medium.com/@swapnilkls29/rxjs-6-0-migration-37a6f3de0000或此处https://github.com/ReactiveX/rxjs/blob/master/docs_app/content/guide/v6/migration.md

答案 1 :(得分:1)

以类似方式导入它:-

java.time.LocalDateTime

并像这样使用它:-

import { map } from 'rxjs/operators';

您缺少.pipe,希望对您有所帮助!