我想我在尝试使用@ngrx时遗漏了一些明显的东西。我正在尝试使用嵌套的减速器,并希望能够返回默认的起始子值。这是我的孩子
export const counter:Reducer<number> =
(state:number = 0, action:Action = {type:null}) => {
switch (action.type) {
我的问题是如何使用它来初始化一个额外的计数器。我的 counters.ts 看起来像
export const counters:Reducer<number[]> = (state:number[] = [], action:Action) => {
switch (action.type) {
case ADD_COUNTER:
return [counter(), ...state];
这可行,但我在计数器上有一个打字稿错误:Supplied parameters do not match any signature of call target
我想知道如何解决这个问题。
我正在使用@ngrx,它提供了这个:
export interface Action {
type: string;
payload?: any;
}
export interface Reducer<T> {
(state: T, action: Action): T;
}
export class Store<T> extends BehaviorSubject<T> {
private _storeSubscription: Subscription<T>
constructor(private _dispatcher:Dispatcher<Action>, private _reducers:{[key:string]:Reducer<any>}, initialState: T) {
super(initialState);
let rootReducer = this._mergeReducers(_reducers, initialState);
this._storeSubscription = rootReducer.subscribe(this);
}