12
我想建立一個共享服務爲遵循behaviourSubject在angular2,它是如何工作以及如何使用它
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());
它拋出一個錯誤。單()/上次()等調用子組件的這個值因陋就簡不是一個函數所以有人告訴我如何實際上工作和如何實現它,因爲我搜索的例子,但沒有任何對我有意義。
,以及如何以檢索它的價值? 'console.log('behiob'+ shared.space.single());' – Ironsun
我更新了我的答案。 –
你可能只回答上一個問題....反正非常感謝:d – Ironsun