gpt4 book ai didi

angular - store.select subscribe 中的更改检测需要 markForCheck。为什么?

转载 作者:太空狗 更新时间:2023-10-29 17:56:17 26 4
gpt4 key购买 nike

我的应用程序组件正在订阅商店选择。我将 ChangeDetectionStrategy 设置为 OnPush。我一直在阅读有关其工作原理的信息;需要更新对象引用以触发更改。但是,当您使用异步管道时,Angular 会期待新的可观察更改并为您执行 MarkForCheck。那么,为什么我的代码在触发订阅时不呈现 channel (除非我调用 MarkForCheck)并且我将 channels$ 设置为新的可观察 channel 数组。

@Component({
selector: 'podcast-search',
changeDetection: ChangeDetectionStrategy.OnPush, // turn this off if you want everything handled by NGRX. No watches. NgModel wont work
template: `
<h1>Podcasts Search</h1>
<div>
<input name="searchValue" type="text" [(ngModel)]="searchValue" ><button type="submit" (click)="doSearch()">Search</button>
</div>
<hr>
<div *ngIf="showChannels">

<h2>Found the following channels</h2>
<div *ngFor="let channel of channels$ | async" (click)="loadChannel( channel )">{{channel.trackName}}</div>
</div>
`,
})

export class PodcastSearchComponent implements OnInit {
channels$: Observable<Channel[]>;
searchValue: string;
showChannels = false;
test: Channel;

constructor(
@Inject( Store) private store: Store<fromStore.PodcastsState>,
@Inject( ChangeDetectorRef ) private ref: ChangeDetectorRef,
) {}

ngOnInit() {

this.store.select( fromStore.getAllChannels ).subscribe( channels =>{
if ( channels.length ) {
console.log('channels', !!channels.length, channels);
this.channels$ = of ( channels );
this.showChannels = !!channels.length;
this.ref.markForCheck();
}
} );
}

我尝试了多种解决方案,包括使用 subject 和调用 next,但这不起作用,除非我调用 MarkForCheck。

谁能告诉我如何避免调用 markForCheck

最佳答案

这可能有点难以解释,但我会尽我最大的努力。当您的原始 Observable(商店)发出时,它没有绑定(bind)到模板。由于您使用的是 OnPush 更改检测,因此当此可观察对象发出时,由于缺少绑定(bind),它不会将组件标记为更改。

您正试图通过覆盖组件属性来触发更改标记。即使您在组件属性本身上创建新引用,这也不会将组件标记为更改,因为组件正在更改其自身的属性,而不是将新值推送到组件。

您认为异步管道在发出新值时将组件标记为更改是正确的。您可以在此处的 Angular 源代码中看到:https://github.com/angular/angular/blob/6.0.9/packages/common/src/pipes/async_pipe.ts#L139

但是您会注意到,这仅适用于值(称为 async),即您与 async 一起使用的属性。 pipe 、火柴 this._obj , async 的对象pipe 已经记录为正在发射的 Observable。

既然你在做channels$ = <new Observable> , async === this._obj实际上是不正确的,因为您正在更改对象引用。这就是您的组件未标记为更改的原因。

您还可以在我整理的 Stackblitz 中看到这一点。第一个组件覆盖传递给 async 的 Observable pipe 而第二个不会覆盖它并通过响应发出的更改来更新数据——这就是你想要做的:

https://stackblitz.com/edit/angular-pgk4pw (我使用 timer 因为它是模拟第三方未绑定(bind) Observable 源的简单方法。使用输出绑定(bind),例如点击更新,更难设置,因为如果它在同一个组件中完成,输出操作将触发更改标记)。

您并没有失去一切——我建议您这样做this.channels$ = this.store.select(...)反而。 async管 Handlebars .subscribe为你。如果您使用 async你不应该使用的管道.subscribe无论如何。

this.channels$ = this.store.select(fromStore.getAllChannels).pipe(
filter(channels => channels.length),
// channels.length should always be truthy at this point
tap(channels => console.log('channels', !!channels.length, channels),
);

请注意,您可以使用 ngIf异步管道也应该避免您对 showChannels 的需求.

关于angular - store.select subscribe 中的更改检测需要 markForCheck。为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51464854/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com