这是我第一次尝试 BehaviorSubject、异步管道和 concatMap,所以我在更新 DOM 中的数据时遇到了一些问题。
我有:
private profilesStore = new BehaviorSubject<any>(null);
profiles$ = this.profilesStore.asObservable();
getUserProfiles(): Observable<Profile[]> {
const headers = this.authService.getHeaders();
return this.http.get<any>(`${API_URL}/profile`, { headers: headers })
.pipe(
catchError(err => throwError(err)),
tap(res => this.profilesStore.next(res)),
shareReplay()
);
}
接着
addProduct(profileId: any) {
const headers = this.authService.getHeaders();
return this.http.post<any>(`${apiUrl}/products/${profileId}`, {}, { headers: headers })
.pipe(
catchError(err => throwError(err)),
concatMap(() => this.profileService.profiles$),
map(profiles => {
const selectedProfile = profiles.findIndex(profile => profile.id === profileId);
profiles[selectedProfile].canEdit = true;
return profiles;
})
);
}
这个逻辑就像购物车逻辑。我将产品添加到其中一个配置文件,因此为了避免再次调用 api (getUserProfiles),我修改了 profile$ 流并添加了我想要的属性(在本例中为 canEdit),但是当我从购物车中删除产品时出现问题并从 getUserProfiles() 恢复数据我知道,当我将 concatMap 与 profile$ 一起使用时,即使我没有调用该函数,我也会对 addProduct() 产生副作用,我的问题是......
为什么它继续执行
map(profiles => {
const selectedProfile = profiles.findIndex(profile => profile.id === profileId);
profiles[selectedProfile].canEdit = true;
return profiles;
})
使用我过去作为参数传递的旧 profileId,即使我没有调用 addProduct() 函数,如何避免这种情况?