gpt4 book ai didi

angular - 无法在 RxJs 6 和 Angular 6 中使用 Observable.of

转载 作者:太空狗 更新时间:2023-10-29 16:46:27 25 4
gpt4 key购买 nike

 import { Observable, of } from "rxjs";

// And if I try to return like this
return Observable.of(this.purposes);

我收到一条错误消息,属性“of”在类型“typeof Observable”上不存在

最佳答案

看起来 cartant 的评论是正确的,RxJS upgrade guide没有具体涵盖该方法,但确实说“对可观察对象进行操作的类已被函数替换”

这似乎意味着所有或大部分类方法(如 .of、.throw 等)已被函数替换

所以代替

import { Observable, of } from "rxjs";
Observable.of(this.purposes);

import { of } from "rxjs";
of(this.purposes);

关于angular - 无法在 RxJs 6 和 Angular 6 中使用 Observable.of,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50220854/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com