我试图弄清楚我将如何从不同的组件中搜索 NGXS。我有来自导航栏组件的搜索栏,而我正在显示来自不同组件的应用程序组件的数据。请看这个 stackblitz 链接 点击这里
代码
this.peopleForm.get('name').valueChanges.pipe(debounceTime(500)).subscribe(
(name: string) => {
console.log(name);
this.people$ = this.store.select(AppState.nameFilter(name));
}
)