rxjs 6''在类型' typeof Observable'中不存在

时间:2018-06-07 23:01:31

标签: angular rxjs rxjs6

刚刚从rxjs 5 / angular 5移动到rxjs 6 / angular 6,经历了这个migration-guide。似乎无法弄清楚现在应该是什么,感谢任何帮助。

import { Observable, of } from 'rxjs';
[ts] 'of' is declared but its value is never read.

// trivial example of what im trying to replace
  isLoggedIn(): Observable<boolean> {
    return Observable.of(true);
  }

2 个答案:

答案 0 :(得分:24)

您现在可以从of导入rxjs。所以....

import { Observable, of } from 'rxjs';

// trivial example of what im trying to replace
  isLoggedIn(): Observable<boolean> {
    return of(true);
  }

答案 1 :(得分:3)

如果您使用的是Angular 6/7或9

import { of } from 'rxjs';

然后不打电话给

Observable.of(res);

只需使用

of(res);