web-dev-qa-db-ja.com

「Observable.of([]);」の取得方法仕事に?

Observable.of([]);の正しい式とインポートは何ですか。

import { of } from 'rxjs';が機能しません。

7
Rose Nettoyeur

RxJS 6以降は、すべての「作成」オブザーバブルを'rxjs'から直接インポートする必要があります(アプリをバンドルするときに パスマップ が設定されていると仮定します)。

より詳細な説明: https://github.com/ReactiveX/rxjs/blob/master/MIGRATION.md#import-paths

import { of } from 'rxjs';

of(1).subscribe(console.log);

デモを参照してください: https://stackblitz.com/edit/TypeScript-e3lxkb?file=index.ts

16
martin