2 つの兄弟コンポーネントがあり、並べて表示しています。たとえば、コンポーネント A とコンポーネント B とします。
Component-A にはフォーム コントロールがあり、ユーザーがフォームに入力したら、いくつかのビジネス ロジックを実行し、データを Component-B に表示する必要があります。
データを共有するサービスを作成しました。現在、ユーザーが変更を加えたときにデータがコンポーネント B で利用可能ですが、自動的に表示されません。コンポーネント B に「更新」ボタンを配置し、ボタンをクリックするとデータが表示されます。
私が達成したいのは、ユーザーがクリックすることなく、Component-A から Component-B へのスムーズなデータ フローです。何らかの理由で、Component-B でサービスをサブスクライブできません。
@angular バージョン ~4.0.0 の使用
Nav.Service.ts
import { Injectable } from '@angular/core';
import { BehaviorSubject } from 'rxjs/BehaviorSubject';
@Injectable()
export class NavService {
// Observable navItem source
private _navItemSource = new BehaviorSubject<string>(null);
// Observable navItem stream
navItem$ = this._navItemSource.asObservable();
changeNav(query: string) {
this._navItemSource.next(query);
console.log("Inside changeNav",query )
}
}
コンポーネントA
Private getSelectedComponents() {
this._navService.changeNav(this.searchValue) //dataFromControls is string data..
this.dataFromSisterComponent = '';
}
HTML:
<div class="form-group">
<div class="form-inline">
<label for="searchbox" class="control-label">Search : </label>
<input id="searchbox"class="form-control" type="text" #searchValue (keyup)="0"/>
<button class="btn btn-success" (click)="getSelectedComponents()">Add</button>
</div>
</div>
コンポーネント B
import { Component, Input, Output, EventEmitter, ViewChild, OnInit, OnDestroy} from '@angular/core';
import { FormControl, FormGroup} from '@angular/forms';
import { DataService} from '../../Services/DataService/data.service';
import { Subscription } from 'rxjs/Subscription';
import { NavService } from '../../Services/NavService/nav.service';
@Component({
moduleId: module.id,
selector:'ComponentB',
templateUrl: 'Component-B.component.html',
})
export class Component-B implements OnInit {
subscription: Subscription;
dataFromComponentA: string;
shows: any;
error: string;
item: string;
constructor(private dataService: DataService,private _navService: NavService)
{
}
ngOnInit() {
this.getQuery();
}
getQuery() {
this.subscription = this._navService.navItem$
.subscribe(
item => this.item = item,
err => this.error = err
);
dataFromComponentA=this.item
console.log("Inside getquery",this.item )
}
ngOnDestroy() {
this.subscription.unsubscribe();
console.log("ngOnDestroy")
}
}
HTML
以下のHTMLでは、ユーザーがComponentAに変更を加えたときに{{dataFromComponentA}}にデータを自動的に表示したいと考えています。現在、「更新」ボタンをクリックするとデータが表示され、このボタンのクリックを避けたかったのです。
<h3>Template Components 123 </h3>
<button class="btn btn-success" (click)="getQuery()">Refresh</button>
<p><b>Value coming from Component-A</b>
{{ dataFromComponentA }}
OK </p>