簡體   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>'

我在訂閱了從 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();
  }

調度-session.service.ts

  public toggleMeetingBar = new Subject<any>();


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

現在升級到 Angular 11 后。我的終端中出現以下錯誤。 Firestore 還有很多其他問題。 但我更關心這個。 我這樣做是為了在組件被銷毀時清除 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))

我該如何解決這個錯誤?

我的 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"
    }

基本導入

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();
  }

為了避免錯誤。

信用鏈接數字海洋

嘗試使用 boolean,所以 onDestroy 你施放 this.destroy$.next(true)。 我正在關注本指南

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

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM