2

在 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;
    }});
}

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

为我工作,适合很少的几行。

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

在此处输入图像描述

我将如何处理数字?用数组?

谷歌和许多 RXJS 信息源一无所获。

4

1 回答 1

3

这是一个如何将 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来实现此相同的功能。

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

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

于 2018-02-28T16:16:21.933 回答