Angular:使用 RxJs/BehaviorSubject 在组件之间动态共享数据



我有两个同级组件并排显示,假设组件-A和组件-B。

组件 A 具有表单控件,一旦用户填写表单,我需要执行一些业务逻辑并将数据显示到组件 B 中。

我创建了服务来共享数据。当前,当用户进行任何更改时,数据在组件-B 中可用,但它不会自动显示,我在组件 B 上放置了"刷新"按钮,当我单击按钮时,将显示数据。

我想要实现的是从组件 A 到组件 B 的平滑数据流,而无需任何用户单击。由于某种原因,我无法订阅组件 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中,我想在 {{dataFromComponentA}} 当用户在组件 A 中进行更改时。现在 当我单击"刷新"按钮时显示数据,并且我 想要避免此按钮单击。

<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>

你需要传递给subscribe的回调中的代码

getQuery() {
this.subscription = this._navService.navItem$
.subscribe(
item => {
this.item = item,
dataFromComponentA=this.item 
console.log("Inside getquery",this.item )
},
err => this.error = err
);
}

最新更新