2

我必须渲染一个组件链(比如刀片中的网格),其中在加载第一个组件的数据后,我将单击该组件的数据行,它将打开下一个组件。单击下一个组件的数据行时,它将打开另一个组件,依此类推。

我正在遵循的方法 - 我在所有这些组件之间有一个共享服务,并且每当为任何组件加载数据时,该组件都会在我的服务的 BehaviourSubject 上调用 next 方法 -this.service.dataLoadedEvent$.next(componentName)

我的服务方法看起来像 -

public renderAllComponents(selectedOption, componentsToRender, componentsInfo): void {
    let componentInstance;

    for (let i = 0; i < componentsToRender.length; i++) {
      componentInstance = new componentsToRender[i](this);

      if (i === 0) {
        // For the component in the first/initial blade
        this.addFirstComponent(componentInstance[i]);
      }
      this.dataLoadedEvent$.subscribe((val) => {
         if (val === componentsInfo[i].name) {
           componentInstance.onSelect(selectedOption[componentsToRender[i].name]);
         }
      });
    }
  }

组件看起来像 -

 public ngOnInit() {
    this.view = this.comp.pipe(
      tap(state => {
        this.isLoading = true;
      }),
      switchMap(state => {
        return this.orderService.fetch(state);
      }),
      tap(() => {
        this.isLoading = false;
        this.service.dataLoadedEvent$.next(this.constructor.name);
      })
    );
  }

但这里的问题是,在通知服务有关数据加载完成之前,for 循环会前进。因此它将循环变量设置为最后一个值,并在最后一个 componentInstance 上调用该方法,这不是预期的行为。任何帮助将不胜感激。提前致谢 !

4

1 回答 1

0

问题:

循环中的迭代是异步执行的,因此不会发生等待值的情况。


使固定

这个问题可以分3步解决,如下:

  1. 创建一个 ID 为“ bladeTracker ” 的隐藏元素,(Example: <i id="bladeTracker">1</i>)并将其值设置为初始刀片编号。

  2. 创建一个带有等待数据加载的异步函数,它仅在加载数据时更新bladeTracker的值。

  3. 编写一个名为“ showNextBlade() ”的函数,每当bladeTracker元素的值发生变化时就会触发该函数。

于 2020-02-09T12:07:10.200 回答