我对ngrx
很陌生,只是想尽办法解决这个问题,
我已将ngrx(版本8.3)添加到我的应用程序中。
我希望一些东西处于基本状态(如果可能),然后为我的每个功能设置单独的状态。我从root状态开始,但是我所拥有的选择器从未被通知。
我有以下动作...
// actions
import { createAction, union } from '@ngrx/store';
import { SecurityTokensState } from './app.reducer';
export const setUrl = createAction(
'[App url] ',
(payload: string) => ({ payload })
);
export const setTokens = createAction(
'[App setSecurityTokens] ',
(payload: SecurityTokensState) => ({ payload })
);
export const actions = union({
setUrl,
setTokens
});
export type ActionsUnion = typeof actions;
以及以下减速器。
import * as rootActions from './app.actions';
import { createReducer, on } from '@ngrx/store';
/** Top level state */
export interface State {
/** State to do with Auth */
tokens: SecurityTokensState;
/** General / root app state (eg configuration) */
app: AppState
}
/** App wide general state */
export interface AppState {
url: string;
//extraLogging: boolean;
//offlineExpiry: number;
//offlineTime: number;
}
/** Security token state */
export interface SecurityTokensState {
token: string,
refreshToken: string;
}
const initialState: State = { tokens: undefined, app: { url: ""} };
export function rootReducer(state: State, action: rootActions.ActionsUnion): State {
return reducer(state, action);
}
const reducer = createReducer(
initialState,
on(rootActions.setTokens,
(state, { payload }) => ({ ...state, tokens: payload })
),
on(rootActions.setUrl,
(state, { payload }) => ({ ...state, app: updateUrl(state, payload)}))
)
/** Helper to update the nested url */
const updateUrl = (state: State, payload: string): AppState => {
const updatedApp = { ...state.app };
updatedApp.url = payload;
return updatedApp;
}
然后我创建了以下选择器...
import { createFeatureSelector, createSelector } from "@ngrx/store";
import { AppState } from './app.reducer';
const getAppState = createFeatureSelector<AppState>('app');
export const getUrl = createSelector(
getAppState,
state => state.url
);
在app.module中,我有以下内容...
StoreModule.forRoot(rootReducer),
现在,在组件中,我有
import * as rootSelectors from '../state/app.selectors';
....
public onUrlBlur(ev : any): void {
let val = ev.target.value;
this.store.dispatch(rootActions.setUrl(val));
}
我有订阅更新的代码
this.subs.sink =
this.store.pipe(select(rootSelectors.getUrl)).subscribe(url => {
this.urlEntered = url
});
最后,作为占位符,在我的一个功能模块中,我添加了...
StoreModule.forFeature('myfeature1', {})
我看到了模糊函数被调用,在redux开发工具中,我看到了
但是对于状态,我所看到的只是
可观察到的this.store.pipe(select(rootSelectors.getUrl))。subscribe(url => {`永远不会触发
所以我的根状态似乎不存在,而且我真的看不到我做错了什么。
有人在我弄乱这里的地方有任何指针吗?
在此先感谢您的帮助!
[UPDATE1]
添加了一个非常相似的示例(有相同的问题)here
运行时,转到控制台,可以看到以下内容...
selector.ts:610 The feature name "appRoot" does not exist in the state, therefore createFeatureSelector cannot access it. Be sure it is imported in a loaded module using StoreModule.forRoot('appRoot', ...) or StoreModule.forFeature('appRoot', ...). If the
我不知道如何使用StoreModule.forRoot(rootReducer ),
在错误中,它建议使用字符串...例如StoreModule.forRoot('app', rootReducer ),
,但这会产生语法错误。
如果我执行以下操作...
StoreModule.forRoot({appRoot: rootReducer} ),
我得到一个嵌套状态...
但只是通过减速器
StoreModule.forRoot(rootReducer ),
我没有状态...
我看到的所有示例都只使用功能状态,但是我有许多设置仅适用于应用程序,并且仅在功能模块中提供。
此外,由于此状态不在功能模块中,因此我不确定是否应该使用createFeatureSelector。
const getAppState = createFeatureSelector<AppState>('appRoot');
非常混乱...
任何帮助,万分感谢。
答案 0 :(得分:1)
StoreModule.forRoot()
函数需要一个ActionReducerMap
,而不是reducer函数。
有关更多信息,请参见docs。
要解决嵌套状态问题,您的情况如下所示:
StoreModule.forRoot({
tokens: tokensReducer,
appRoot: appRootReducer
})
或者您可以这样做:
StoreModule.forRoot({}),
StoreModule.forFeate('appRoot', appRootReducer)
答案 1 :(得分:0)
我猜你的化合器配置不正确,这就是为什么触发动作没有改变状态的原因。并且由于this.store.pipe(select(rootSelectors.getUrl))。subscribe(url => {})的状态没有变化,因此该预订永远不会被触发。