标签: angular typescript ngrx-store
我在下面的组件中调用两个调度程序,
this.store.dispatch(new topSectionAction(this.Id)); this.store.dispatch(new bottomSectionAction(this.Id));
因此,基于我要取消第二个商店调度程序的第一个API数据,将发生两个API调用(意味着我想取消第二个API请求)。我怎样才能做到这一点?