web-dev-qa-db-ja.com

angle2のbehaviourSubject、動作方法および使用方法

私は次のように共有サービスを構築しようとしています

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()などのエラーがスローされます。利用可能なものはすべて関数ではないため、例を検索したときに実際にどのように機能し、どのように実装するかを誰かに教えてもらえますが、意味がありません。

13
Ironsun

1つのプロパティに縮小すると、次のようになります。イベント値にSharedServiceという名前の型を使用することは意味がないため、stringXxxServiceに変更しました。

import {Injectable}     from 'angular2/core';
import {BehaviorSubject} from 'rxjs/BehaviorSubject';

@Injectable()
export class SearchService {

    public space: Subject<string> = new BehaviorSubject<string>(null);

    broadcastTextChange(text:string) {
        this.space.next(text);
    }
}
@Component({
  selector: 'some-component'
  providers: [SearchService], // only add it to one common parent if you want a shared instance
  template: `some-component`)}
export class SomeComponent {
  constructor(searchService: SearchService) {
    searchService.space.subscribe((val) => {
      console.log(val); 
    });
  }
}
20