0

同じタイトルの質問をいくつか見つけましたが、私が見る限り、解決策は基本的に配列ではなく Observable を返すことを示唆しているものもありました (他のものは私の場合ではない FireBase に関するものです)。さて、私が懸念している限り、以下のコードは Observable を返します (「getServerSentEvent(): Observable {return Observable.create ...」を見てください)。

最終的な目標は、Rest WebFlux から返されたストリームからすべてのイベントを取得することです。問題がAngularの間違いに関連していると確信しているので、私はバックエンドを通り過ぎませんでした。

その上、app.component.ts から extratos$ にイベントが適切に送信されていることをデバッグして確認できます (下の画像を参照)。

ログ全体

core.js:6185 ERROR Error: InvalidPipeArgument: '[object Object]' for pipe 'AsyncPipe'
    at invalidPipeArgumentError (common.js:5743)
    at AsyncPipe._selectStrategy (common.js:5920)
    at AsyncPipe._subscribe (common.js:5901)
    at AsyncPipe.transform (common.js:5879)
    at Module.ɵɵpipeBind1 (core.js:36653)
    at AppComponent_Template (app.component.html:8)
    at executeTemplate (core.js:11949)
    at refreshView (core.js:11796)
    at refreshComponent (core.js:13229)
    at refreshChildComponents (core.js:11527)

app.component.ts

import { Component, OnInit } from '@angular/core';
import { AppService } from './app.service';
import { SseService } from './sse.service';
import { Extrato } from './extrato';
import { Observable } from 'rxjs';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  providers: [SseService],
  styleUrls: ['./app.component.css']
})
export class AppComponent implements OnInit {
  //extratos: any;
  extratos$ : Observable<any>;

  constructor(private appService: AppService, private sseService: SseService) { }

  ngOnInit() {
    this.getExtratoStream();
  }

  getExtratoStream(): void {
    this.sseService
      .getServerSentEvent("http://localhost:8080/extrato")
      .subscribe(
        data => {
          this.extratos$ = data;
        }
      );
  }
}

sse.service.ts

import { Injectable, NgZone } from '@angular/core';
import { Observable } from 'rxjs';
import { Extrato } from './extrato';

@Injectable({
  providedIn: "root"
})
export class SseService {
  extratos: Extrato[] = [];
  constructor(private _zone: NgZone) { }

  //getServerSentEvent(url: string): Observable<Array<Extrato>> {
  getServerSentEvent(url: string): Observable<any> {
    return Observable.create(observer => {
      const eventSource = this.getEventSource(url);
      eventSource.onmessage = event => {
        this._zone.run(() => {
          let json = JSON.parse(event.data);
          this.extratos.push(new Extrato(json['id'], json['descricao'], json['valor']));
          observer.next(this.extratos);
        });
      };
      eventSource.onerror = (error) => {
        if (eventSource.readyState === 0) {
          console.log('The stream has been closed by the server.');
          eventSource.close();
          observer.complete();
        } else {
          observer.error('EventSource error: ' + error);
        }
      }

    });
  }
  private getEventSource(url: string): EventSource {
    return new EventSource(url);
  }
}

app.component.html

<h1>Extrato Stream</h1>
<div *ngFor="let ext of extratos$ | async">
  <div>{{ext.descricao}}</div>
</div>

観測可能な extratos$ が入力されている証拠

ここに画像の説明を入力

4

1 に答える 1

1

これを書くと、それはコールバックの引数でコンポーネント側で取得するものobserver.next(this.extratos);であることを意味するため、これを行うと、実際には. TypeScript はそれについて不平を言うことはありません。おそらく、あなたが行ったようにゼロから構築するときに型を推測するほどスマートではないためです。this.extratosdatathis.extratos$ = data;extratos ArrayObservable

これを試して:

this.extratos$ = this.sseService
      .getServerSentEvent("http://localhost:8080/extrato");

そしてテンプレートで:<div *ngFor="let ext of extratos$ | async">

于 2020-03-23T22:43:39.783 に答える