订阅rxjs主题时,打字稿中的类型错误?

时间:2019-11-15 10:55:57

标签: typescript rxjs

我的目标是打开一个{x {1}}类型的rxjs主题的订阅。

我的代码如下:

string | undefined

Image that shows the problem

如何获取import {Subject, Observable} from 'rxjs'; const a = new Subject<string | undefined>(); // v has type "string", and not "string | undefined" a.subscribe(v => console.log(v)); 的类型为v

Here is a stackblitz,如果您不想尝试的话。

1 个答案:

答案 0 :(得分:4)