gpt4 book ai didi

angular - 将 Angular 从 10 升级到 11 后。我得到 Argument of type 'Subject' is not assignable to parameter of type 'ObservableInput'

转载 作者:行者123 更新时间:2023-12-05 06:01:00 27 4
gpt4 key购买 nike

我几乎在每个组件文件中都有这行代码,我订阅了从单例服务文件返回的可观察对象。

destroy$ : Subject<void> = new Subject<void>()

this._sessionService.toggleMeetingBar.pipe(takeUntil(this.destroy$)).subscribe(result => {
this.barType = "meetingBar";
this._sideNav.toggle();
})
  ngOnDestroy(): void {
this.destroy$.next();
this.destroy$.complete();
}

schedule-session.service.ts

  public toggleMeetingBar = new Subject<any>();


this._session.upsertSession(sessionData).subscribe(result => {
this.toggleMeetingBar.next(false);
});

现在升级到 Angular 11 后。我的终端出现以下错误。关于 Firestore 还有很多其他问题。但我更关心这个。我这样做是为了在组件被销毁时清除内存。

Error: src/app/shared/components/auto-complete/auto-complete.component.ts:77:34 - error TS2345: Argument of type 'Subject<void>' is not assignable to parameter of type 'ObservableInput<any>'.
Type 'Subject<void>' is not assignable to type 'Observable<any>'.

77 .pipe(take(1), takeUntil(this._onDestroy))

如何修复此错误?

我的包.json

  "dependencies": {
"@angular-material-components/datetime-picker": "5.1.0",
"@angular/animations": "^11.2.12",
"@angular/cdk": "^11.2.11",
"@angular/common": "11.2.12",
"@angular/compiler": "11.2.12",
"@angular/core": "11.2.12",
"@angular/fire": "^6.1.4",
"@angular/forms": "11.2.12",
"@angular/material": "11.2.11",
"@angular/material-moment-adapter": "11.2.11",
"@angular/platform-browser": "11.2.12",
"@angular/platform-browser-dynamic": "11.2.12",
"@angular/router": "11.2.12",
"@filestack/angular": "^1.3.0",
"@fortawesome/angular-fontawesome": "^0.8.2",
"@fortawesome/fontawesome-free": "^5.15.3",
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fullcalendar/angular": "5.6.0",
"@fullcalendar/core": "5.6.0",
"@fullcalendar/daygrid": "5.6.0",
"@fullcalendar/interaction": "5.6.0",
"@fullcalendar/list": "5.6.0",
"@fullcalendar/moment": "5.6.0",
"@fullcalendar/rrule": "5.6.0",
"@fullcalendar/timegrid": "5.6.0",
"@syncfusion/ej2-angular-navigations": "^19.1.58",
"@syncfusion/ej2-angular-progressbar": "^19.1.57",
"@syncfusion/ej2-angular-richtexteditor": "^19.1.57",
"@syncfusion/ej2-angular-splitbuttons": "^19.1.54",
"@syncfusion/ej2-layouts": "^19.1.58",
"@types/jspdf": "^1.3.3",
"@types/stripe": "^8.0.416",
"apexcharts": "^3.26.1",
"bootstrap": "^4.6.0",
"crypto-js": "4.0.0",
"filestack-js": "^3.23.1",
"firebase": "^8.4.3",
"font-awesome": "^4.7.0",
"highlight.js": "10.7.2",
"jquery": "^3.6.0",
"jspdf": "^2.3.1",
"lodash-es": "4.17.21",
"moment": "^2.29.1",
"ng-apexcharts": "^1.5.9",
"ng-circle-progress": "^1.6.0",
"ng-starrating": "^1.0.20",
"ng-stripe-checkout": "^1.0.4",
"ng-wistia-components": "0.0.2",
"ngx-device-detector": "^2.0.8",
"ngx-infinite-scroll": "^10.0.1",
"ngx-markdown": "11.1.3",
"ngx-mat-select-search": "^3.2.0",
"ngx-moment": "^5.0.0",
"ngx-pagination": "^5.0.0",
"ngx-quill": "^13.3.1",
"ngx-sharebuttons": "^8.0.5",
"ngx-toastr": "^13.2.1",
"perfect-scrollbar": "1.5.0",
"quill": "1.3.7",
"rrule": "2.6.8",
"rxjs": "7.0.0",
"stripe": "^8.145.0",
"stripe-angular": "^1.7.0",
"tslib": "2.2.0",
"web-animations-js": "2.3.2",
"zone.js": "0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.1102.11",
"@angular/cli": "11.2.11",
"@angular/compiler-cli": "11.2.12",
"@angular/language-service": "11.2.12",
"@types/crypto-js": "4.0.1",
"@types/highlight.js": "9.12.4",
"@types/jasmine": "3.6.10",
"@types/jasminewd2": "2.0.8",
"@types/lodash-es": "4.17.4",
"@types/node": "15.0.1",
"codelyzer": "6.0.2",
"jasmine-core": "3.7.1",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.3.2",
"karma-chrome-launcher": "3.1.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "4.0.1",
"karma-jasmine-html-reporter": "1.5.4",
"lodash": "^4.17.21",
"protractor": "7.0.0",
"tailwindcss": "2.1.2",
"ts-node": "9.1.1",
"tslint": "6.1.2",
"typescript": "^4.1.5"
}

基本导入

import { Component, HostListener, Inject, OnInit, ViewChild } from '@angular/core';
import { Sessions } from "../../../customApi/sessions";
import { SessionLogsService } from '../session-logs.service';
import { Utils } from 'app/shared/utils/utils';
import { MatTableDataSource } from '@angular/material/table';
import { UserConstant } from 'app/user.constant';
import { DOCUMENT } from '@angular/common';
import { ReplaySubject, Subject } from 'rxjs';
import { takeUntil } from 'rxjs/operators';

最佳答案

我要忏悔我的罪。

我用过ncu -u更新我的 package.json。因此,当在您的应用程序中运行此命令时,它会将每个包的版本更新为最新的可用版本。

按照@kvetis 和@Chellappan 的建议,我将 rxjs 版本从 7 降级到 6.5.5(稳定版)并且它运行良好。我还必须将 typescript 降级到 4.1.5

此后一切正常。

感谢所有发表评论的人。

编辑:

RXJS 版本 7 以下

destroy$ : Subject<void> = new Subject<void>()
ngOnDestroy(): void {
this.destroy$.next();
this.destroy$.complete();
}

RXJS 版本 7.1.0

destroy$ : Subject<boolean> = new Subject<boolean>()
ngOnDestroy(): void {
this.destroy$.next(true);
this.destroy$.complete();
}

为了避免错误。

Credit link digitalocean

关于angular - 将 Angular 从 10 升级到 11 后。我得到 Argument of type 'Subject<void>' is not assignable to parameter of type 'ObservableInput<any>',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67382170/

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