次のように共有サービスを構築しようとしています
import {Injectable,EventEmitter} from 'angular2/core';
import {Subject} from 'rxjs/Subject';
import {BehaviorSubject} from 'rxjs/subject/BehaviorSubject';
@Injectable()
export class SearchService {
public country = new Subject<SharedService>();
public space: Subject<SharedService> = new BehaviorSubject<SharedService>(null);
searchTextStream$ = this.country.asObservable();
broadcastTextChange(text: SharedService) {
this.space.next(text);
this.country.next(text);
}
}
export class SharedService {
country: string;
state: string;
city: string;
street: string;
}
基本的に BehaviourSubject を実装する方法がわかりません。基本的にここで試しているのは単なる混乱であり、子コンポーネントでこの値を使用して呼び出しています
console.log('behiob' + shared.space.single());
これは .single()/last() などのエラーをスローしています 利用可能なものはすべて関数ではないので、例を検索したときに実際にどのように機能し、どのように実装するかを誰かが教えてくれますが、私には意味がありません。