我有两个同级组件并并排显示,比如说 Component-A 和 Component-B。
Component-A 有表单控件,一旦用户填写表单,我需要执行一些业务逻辑并将数据显示到 Component-B。
我创建了服务来共享数据。当前数据在用户进行任何更改时可用 Component-B 但它不会自动显示,我在 Component-B 上放置了“刷新”按钮,当我单击按钮时数据会显示出来。
我想要实现的是从 Component-A 到 Component-B 的流畅数据流,无需任何用户点击。由于某种原因,我无法订阅 Component-B 中的服务。
使用 @angular 版本 ~4.0.0
导航服务.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>