我必须渲染一个组件链(比如刀片中的网格),其中在加载第一个组件的数据后,我将单击该组件的数据行,它将打开下一个组件。单击下一个组件的数据行时,它将打开另一个组件,依此类推。
我正在遵循的方法 - 我在所有这些组件之间有一个共享服务,并且每当为任何组件加载数据时,该组件都会在我的服务的 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 上调用该方法,这不是预期的行为。任何帮助将不胜感激。提前致谢 !