Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
那么ofoperator 和Observable.of创建 observable 的推荐方法是什么?
of
Observable.of
import { Observable } from 'rxjs/Observable'; const obs$ = Observable.of(3);
或者
import { of as observableOf } from 'rxjs'; const obs$ = observableOf(3);
第二种方式是首选方式,并且(从 rxjs v7 开始)是唯一的方式。目前在 v6 中,您仍然可以通过包含 rxjs-compat 包来使用第一种方法,但是编写新代码时,您应该坚持提到的最后一种方法。