作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Angular, NGRX 如何在 ngOnInit 中使用 rxjs 操作符
嘿,
我有一个小问题来理解将 rxjs 运算符与 ngrx 结合使用。下面我有一个带有 ngrx 存储的简单组件 - 我有所有必要的数据并且选择器工作正常:
export class TestComponent implements OnInit {
selector1$: Observable<any>;
selector2$: Observable<any>;
constructor(private store$: Store<StoreModel>) {
}
ngOnInit() {
selector1$ = this.store$.pipe(select(selectValue1));
selector2$ = this.store$.pipe(select(selectValue1));
}
}
ngOnInit() {
pipe(
withLatestFrom(
this.store$.pipe(select(selectValue1));
this.store$.pipe(select(selectValue2));
),
map(([respValue1, respValue2]) => {
}
}
this.store$.pipe(
withLatestFrom(
this.store$.pipe(select(selectValue1));
this.store$.pipe(select(selectValue2));
),
map(([respValue1, respValue2]) => {
}
}
this.store$.pipe(combineLatest(
this.store$.pipe(select(selectValue1)),
this.store$.pipe(select(selectValue2)),
(respValue1, respValue2) => {
return `${respValue1} + ${respValue2}`
})).subscribe(console.log);
最佳答案
withLatestFrom()
不是“可观察的创建方法”,所以你可能想要使用 combineLatest()
相反(另外, withLatestFrom()
的工作方式与 combineLatest()
不同)。
combineLatest([
this.store$.pipe(select(selectValue1)),
this.store$.pipe(select(selectValue1)),
]).subscribe(([result1, result2]) => {
// do whatever you want here
})
关于Angular, NGRX 如何在 ngOnInit 中使用 rxjs 操作符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60059459/
我是一名优秀的程序员,十分优秀!