मैं यह समझने की कोशिश कर रहा हूं कि कोणीय 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));
}
}
यह व्यवहार नया विषय के रूप में नए मूल्यों को धकेल दिया जाता है:
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
}
मैं async पाइप और * ngFor के साथ एक अवलोकनीय वस्तु से अतुल्यकालिक रूप से एक सरणी कैसे प्रदर्शित कर सकता हूं? त्रुटि संदेश मुझे मिलता है:
browser_adapter.js:77 ORIGINAL EXCEPTION: TypeError: Cannot read property 'availabilties' of undefined