gpt4 book ai didi

rxjs - 角 6 : Property 'of' does not exist on type 'typeof Observable'

转载 作者:行者123 更新时间:2023-12-04 04:56:36 30 4
gpt4 key购买 nike

我正在使用 角 6
使用 "rxjs": "^6.0.0",

错误 :属性“of”在类型“typeof Observable”上不存在。

import { Injectable } from '@angular/core';
import { TranslateLoader } from '@ngx-translate/core';
import { Observable, Subject, pipe, of } from 'rxjs';


@Injectable()
export class MiTranslateLoaderService implements TranslateLoader {

getTranslation(lang: string): Observable<any> {
return Observable.of({
lbl_select: 'Select',
});
}
}

最佳答案

从 RxJS 6 开始,正确且推荐的使用方式 of() (在 Observable.of() 中的 RxJS 5)是这样的:

import { of } from 'rxjs';

我想这个 import { of } from 'rxjs/observable/of';只有当你有 rxjs-compat 时才有效安装包。

关于rxjs - 角 6 : Property 'of' does not exist on type 'typeof Observable' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50870736/

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