我使用角度6,并且我无法导入操作员地图,我尝试导入两种方式:
使用来自'rxjs / operators'的import {map};但是从未使用过此操作符的Visual Studio代码,而我给出了此错误:
如果我这样输入:import'rxjs / add / operator / map';
我也给出错误
我如何导入该操作员图?
答案 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,希望对您有所帮助!