标签: typescript rxjs
在使用RxJS时何时使用以下每种类型的导入是否有硬性规定?
import { debounceTime } from 'rxjs/operators'; import 'rxjs/add/operator/map';
当我尝试时似乎有某物 import { map } from 'rxjs/operator/map';,但VSCode中的intellisense表示这对导入有效,但在代码中用作操作无效。
import { map } from 'rxjs/operator/map';
为什么有不同的导入方式?