简体   繁体   English

将 Angular 从 10 升级到 11 后。我得到“主题”类型的参数<void> ' 不可分配给 'ObservableInput 类型的参数<any> '</any></void>

[英]After upgrade Angular to 11 from 10. I get Argument of type 'Subject<void>' is not assignable to parameter of type 'ObservableInput<any>'

I have this line of code in almost every component file where I have subscribe to an observable returning from singleton service file.我在订阅了从 singleton 服务文件返回的 observable 的几乎每个组件文件中都有这行代码。

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调度-session.service.ts

  public toggleMeetingBar = new Subject<any>();


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

Now after upgrading to Angular 11. I get below error flooded in my terminal.现在升级到 Angular 11 后。我的终端中出现以下错误。 There are many other issue regarding Firestore. Firestore 还有很多其他问题。 But I am more concern with this one.但我更关心这个。 I did this to clear the memory when the component is destroyed.我这样做是为了在组件被销毁时清除 memory。

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))

How can I fixed this error?我该如何解决这个错误?

My package.json我的 package.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"
    }

Basic import基本导入

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';

I want to confess my sins.我要承认我的罪。

I had used ncu -u to update my package.json .我曾使用ncu -u更新我的package.json So this command when run in your application it will update version of each packages to latest available version.因此,当在您的应用程序中运行此命令时,它会将每个包的版本更新为最新的可用版本。

As suggested by @kvetis and @Chellappan I downgrade rxjs version from 7 to 6.5.5 (stable) and it worked fine.正如@kvetis 和@Chellappan 所建议的,我将rxjs版本从 7 降级到 6.5.5(稳定),并且运行良好。 Also I had to downgrade typescript to 4.1.5我还不得不将 typescript 降级到 4.1.5

Everything worked fine after this.在此之后一切正常。

Thanks to everybody who commented.感谢所有评论的人。

EDITED:编辑:

Below RXJS version 7 RXJS以下版本7

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

RXJS version 7.1.0 RXJS 版本 7.1.0

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

To avoid error.为了避免错误。

Credit link digitalocean 信用链接数字海洋

try to use a boolean, so onDestroy you cast this.destroy$.next(true).尝试使用 boolean,所以 onDestroy 你施放 this.destroy$.next(true)。 i'm following this guide我正在关注本指南

https://www.digitalocean.com/community/tutorials/angular-takeuntil-rxjs-unsubscribe https://www.digitalocean.com/community/tutorials/angular-takeuntil-rxjs-unsubscribe

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Angular 8 类型“void”不可分配给类型“ObservableInput”<any> '</any> - Angular 8 Type 'void' is not assignable to type 'ObservableInput<any>' 类型 'void' 不可分配给类型 'ObservableInput<any> '</any> - Type 'void' is not assignable to type 'ObservableInput<any>' Angular 7类型“ void”不可分配给类型“ ObservableInput &lt;{}&gt;” - Angular 7 Type 'void' is not assignable to type 'ObservableInput<{}>' 输入'无效| 可观察的<any> ' 不可分配给类型 'ObservableInput<any> '. 类型“void”不可分配给类型“ObservableInput”<any> '</any></any></any> - Type 'void | Observable<any>' is not assignable to type 'ObservableInput<any>'. Type 'void' is not assignable to type 'ObservableInput<any>' Angular - '(error: any) =&gt; void' 类型的参数不可分配给'() =&gt; void' 类型的参数 - Angular - Argument of type '(error: any) => void' is not assignable to parameter of type '() => void' SwitchMap:类型“void”不可分配给类型“ObservableInput”<any> ' 对于 http 响应</any> - SwitchMap: Type 'void' is not assignable to type 'ObservableInput<any>' for http response Angular 6 RxJS6类型“ void”不能分配给类型“ ObservableInput &lt;{}&gt;” - Angular 6 RxJS6 Type 'void' is not assignable to type 'ObservableInput<{}>' 如何解决`(logList: string[]) =&gt; void&#39;不能分配给&#39;(value: string[], index: number) =&gt; ObservableInput类型的参数<any> `? - How to solve `(logList: string[]) => void' is not assignable to parameter of type '(value: string[], index: number) => ObservableInput<any>`? switchMap类型void不能分配给ObservableInput &lt;{}&gt;类型 - switchMap Type void is not assignable to type ObservableInput<{}> 类型&#39;any []&#39;的参数不能分配给&#39;(value:[any,Campaign []])=&gt; void&#39;类型的参数 - Argument of type 'any[]' is not assignable to parameter of type '(value: [any, Campaign[]]) => void'
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM