Використання масиву від Observable Object з ngFor та Async Pipe Angular 2


93

Я намагаюся зрозуміти, як використовувати Observables у Angular 2. У мене є ця послуга:

import {Injectable, EventEmitter, ViewChild} from '@angular/core';
import {Observable} from "rxjs/Observable";
import {Subject} from "rxjs/Subject";
import {BehaviorSubject} from "rxjs/Rx";
import {Availabilities} from './availabilities-interface'

@Injectable()
export class AppointmentChoiceStore {
    public _appointmentChoices: BehaviorSubject<Availabilities> = new BehaviorSubject<Availabilities>({"availabilities": [''], "length": 0})

    constructor() {}

    getAppointments() {
        return this.asObservable(this._appointmentChoices)
    }
    asObservable(subject: Subject<any>) {
        return new Observable(fn => subject.subscribe(fn));
    }
}

Цей BehaviourSubject висуває нові значення, як і з іншої служби:

that._appointmentChoiceStore._appointmentChoices.next(parseObject)

Я підписуюсь на нього у вигляді спостережуваного в компоненті, в якому я хочу відображати його:

import {Component, OnInit, AfterViewInit} from '@angular/core'
import {AppointmentChoiceStore} from '../shared/appointment-choice-service'
import {Observable} from 'rxjs/Observable'
import {Subject} from 'rxjs/Subject'
import {BehaviorSubject} from "rxjs/Rx";
import {Availabilities} from '../shared/availabilities-interface'


declare const moment: any

@Component({
    selector: 'my-appointment-choice',
    template: require('./appointmentchoice-template.html'),
    styles: [require('./appointmentchoice-style.css')],
    pipes: [CustomPipe]
})

export class AppointmentChoiceComponent implements OnInit, AfterViewInit {
    private _nextFourAppointments: Observable<string[]>

    constructor(private _appointmentChoiceStore: AppointmentChoiceStore) {
        this._appointmentChoiceStore.getAppointments().subscribe(function(value) {
            this._nextFourAppointments = value
        })
    }
}

І спроба відобразити у поданні так:

  <li *ngFor="#appointment of _nextFourAppointments.availabilities | async">
         <div class="text-left appointment-flex">{{appointment | date: 'EEE' | uppercase}}

Однак доступність ще не є властивістю спостережуваного об'єкта, тому він помиляється, навіть думав, що я визначаю це в інтерфейсі доступності так:

export interface Availabilities {
  "availabilities": string[],
  "length": number
}

Як можна асинхронно відобразити масив із спостережуваного об’єкта за допомогою асинхронної труби та * ngFor? Я отримую повідомлення про помилку:

browser_adapter.js:77 ORIGINAL EXCEPTION: TypeError: Cannot read property 'availabilties' of undefined

Яке фактичне повідомлення про помилку?
Günter Zöchbauer

відредаговано, щоб додати помилку
C. Kearns,

з останнім angular-rc1 синтаксис*ngFor="let appointment of _nextFourAppointments.availabilities | async">
Джаганнатх

це правда, але помилку не спричиняє. він просто кидає попередження.
К. Кернс,

3
Я вважаю, що десь є помилка. Помилка говорить, availabiltiesпоки має бутиavailabilities
Іван Сівак

Відповіді:


154

Ось приклад

// in the service
getVehicles(){
    return Observable.interval(2200).map(i=> [{name: 'car 1'},{name: 'car 2'}])
}

// in the controller
vehicles: Observable<Array<any>>
ngOnInit() {
    this.vehicles = this._vehicleService.getVehicles();
}

// in template
<div *ngFor='let vehicle of vehicles | async'>
    {{vehicle.name}}
</div>

моя функція get повертає тему, хоча:, public _appointmentChoices: Subject<any> = new Subject() getAppointments() { return this._appointmentChoices.map(object=>object.availabilities).subscribe() } у контролері, коли я встановлюю його рівним, я отримую помилку:, browser_adapter.js:77Error: Invalid argument '[object Object]' for pipe 'AsyncPipe'як я можу перетворити тему на спостережувану?
К. Кернс

public _appointmentChoices: Subject<any> = new Subject() getAppointments() { return (this._appointmentChoices.map(object=>object.availabilities).asObservable()) } } це видає мені помилку:, property asObservable does not exist on type observableале _appointingChoices - це Subject?
К. Кернс,

Це вже можна було спостерігати! Мені просто потрібно було підписатися на нього!
К. Кернс,

У мене була додаткова проблема з інтеграцією предметів. Ось StackBlitz з використанням спостережуваних і предметів: stackblitz.com/edit/subject-as-observable-list-example
IceWarrior353

12

Хто коли-небудь також натрапляє на цей пост.

Я вірю, це правильний шлях:

  <div *ngFor="let appointment of (_nextFourAppointments | async).availabilities;"> 
    <div>{{ appointment }}</div>
  </div>

1

Я думаю, що ур шукає це

<article *ngFor="let news of (news$ | async)?.articles">
<h4 class="head">{{news.title}}</h4>
<div class="desc"> {{news.description}}</div>
<footer>
    {{news.author}}
</footer>


1

Якщо у вас немає масиву, але ви намагаєтеся використовувати спостережуваний як масив, навіть якщо це потік об’єктів, це не буде працювати оригінально. Я показую, як це виправити нижче, припускаючи, що ви дбаєте лише про додавання об’єктів до спостережуваного, а не про їх видалення.

Якщо ви намагаєтеся використовувати спостережуваний, джерелом якого є тип BehaviourSubject, змініть його на ReplaySubject, тоді у вашому компоненті підпишіться на нього так:

Компонент

this.messages$ = this.chatService.messages$.pipe(scan((acc, val) => [...acc, val], []));

Html

<div class="message-list" *ngFor="let item of messages$ | async">

Замість scanоператора, яким можна скористатися.pipe(toArray())
MotKohn

Черговою підводною камерою при створенні власної Subjectє не дзвінок complete(). Акумулятор ніколи не працюватиме.
MotKohn
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.