当Angular NgRx选择器返回undefined时,可能有几个原因。以下是一些常见的解决方法:
export const selectData = createFeatureSelector('feature');
export const selectDataValue = createSelector(
selectData,
(state: fromFeature.State) => state.value
);
export const initialState: State = {
value: null
};
export function reducer(state = initialState, action: Actions): State {
// ...
}
take
操作符来确保状态已经加载完成,例如:this.store.pipe(
select(fromFeature.selectDataValue),
take(1)
).subscribe(value => {
// 处理选择器返回的值
});
ngOnInit() {
this.store.pipe(
select(fromFeature.selectDataValue)
).subscribe(value => {
// 处理选择器返回的值
});
}
希望这些解决方法可以帮助您解决Angular NgRx选择器返回undefined的问题。