Angular RXJS Observables或在内部传递数字的主题

时间:2018-02-28 16:11:37

标签: angular rxjs observable behaviorsubject subject-observer

在Angular 5应用程序(无API)中传递数字的正确RXJS方法是什么?

我已经成功传递了一个带有Subject的布尔值:

服务:

import {Injectable} from '@angular/core';
import {Subject} from 'rxjs/Subject';

@Injectable()
export class IsOpened {

  data = new Subject();

  constructor() {}

  insertData(data){
    this.data.next(data);
  }
}

发射器:

toggle(){
    this.opening = !this.opening;
    this._isOpened.insertData(this.opening);
}

听众:

ngAfterViewInit() {
    this._isOpened.data.subscribe((value) => {
      if(value) this.opened = true;
      else this.opened = false;
    }});
}

我在监听器中作弊,因为我不存储接收到的值,而是评估它并重新创建布尔值。

对我有用,只适用于几行。

我不能对数字做同样的事。

enter image description here

我怎么用数字做?有数组?

Google和许多RXJS信息来源都没有产生任何结果。

1 个答案:

答案 0 :(得分:2)

以下是如何将Subject / BehaviorSubject与对象一起使用的示例。这种技术适用于数字。

<强>服务

export class ProductService {
    private products: IProduct[];

    // Private to encapsulate it and prevent any other code from
    // calling .next directly
    private selectedProductSource = new BehaviorSubject<IProduct | null>(null);

    // Publicly expose the read-only observable portion of the subject
    selectedProductChanges$ = this.selectedProductSource.asObservable();

    changeSelectedProduct(selectedProduct: IProduct | null): void {
        this.selectedProductSource.next(selectedProduct);
    }
}

组件设置值

  onSelected(product: IProduct): void {
    this.productService.changeSelectedProduct(product);
  }

在这种情况下,当用户在一个组件中选择某个内容时,该选择将被广播给其他几个组件。

读取值的组件

ngOnInit() {
    this.productService.selectedProductChanges$.subscribe(
        selectedProduct => this.product = selectedProduct
    );
}

在此示例中,读取值的组件将其存储到其自己的局部变量中。该变量用于绑定,UI根据所选产品进行更改。

注意:您可以使用没有主题/行为主题的getter / setter来实现此 SAME 功能。

我在这里使用了Subject / BehaviorSubject的完整示例:https://github.com/DeborahK/Angular-Communication/tree/master/APM-Final

完全相同的功能与getter / setter相同而不是Subject / BehaviorSubject:https://github.com/DeborahK/Angular-Communication/tree/master/APM-FinalWithGetters