在Angular 8中,of
操作符不再是Observable
类的静态方法。相反,它是rxjs
库的函数之一。
要解决这个问题,你需要先导入of
操作符,然后在使用它时调用它。
以下是一个示例代码:
import { of } from 'rxjs';
// ...
const myObservable = of('hello', 'world');
myObservable.subscribe(value => {
console.log(value);
});
在这个示例中,我们从rxjs
库中导入of
操作符,并在of
操作符中传入要发出的值。然后,我们可以通过订阅myObservable
来获取这些值。
确保在你的代码中正确导入rxjs
库,并使用of
操作符来创建Observable
。