Observable.of([]);的正确表达和导入是什么?
从’rxjs’导入{of};不适合我.
从RxJS 6开始,您应该直接从’rxjs’导入所有“创建”可观察量(假设您在捆绑应用程序时设置了
path maps).
原文链接:https://www.f2er.com/angularjs/143598.html更详细的解释:https://github.com/ReactiveX/rxjs/blob/master/MIGRATION.md#import-paths
import { of } from 'rxjs'; of(1).subscribe(console.log);
见demo:https://stackblitz.com/edit/typescript-e3lxkb?file=index.ts