首页 > 解决方案 > 如何在一个函数中调用多个 eventType?

问题描述

我在我的服务中编写了以下函数:

public refresh(area: string) {
    this.eventEmitter.emit({ area });
  }

area访问我所有的孩子,并应通过单击在父母中更新它们。

// 在孩子们

this.myService.eventEmitter.subscribe((data) => {
      if (!this.isLoading && data.area === 'childFirst') {
        this.loadData();
      }
    });
this.myService.eventEmitter.subscribe((data) => {
      if (!this.isLoading && data.area === 'childSecond') {
        this.loadData();
      }
    });
this.myService.eventEmitter.subscribe((data) => {
      if (!this.isLoading && data.area === 'childThird') {
        this.loadData();
      }
    });

// 我的父组件

// TS
 showChildFirst() {
    this.navService.sendNavEventUpdate('childFirst');
  }

  showChildSecond() {
    this.navService.sendNavEventUpdate('childSecond');
  }

  showChildThird() {
    this.navService.sendNavEventUpdate('childThird');
  }

 public refresh(area: string) {
    this.myService.refresh(area);
  }

// HTML
<!-- Refresh your childs -->
<button type="button" (click)="refresh()">Refresh</button>

如果我在函数中插入以下内容:refresh('childFirst')第一个子组件被更新。有没有办法在刷新时刷新所有事件类型?

标签: javascriptangulartypescriptangular-services

解决方案


您可以更改“刷新”方法以获取字符串数组而不是单个字符串。所以方法会变成

 public refresh(areas: string[]) {
    areas.forEach(area =>
        this.myService.refresh(area);
    )
  }

并称它为

<button type="button" (click)="refresh(['childFirst','childSecond','childThird'])">Refresh</button>

推荐阅读