在 NgRx Angular 5 项目中,有一个我不太了解的 reduce 函数的使用。我会很感激一些帮助
基本上,代码会迭代一个对象数组,该数组如下所示:
[{
id: '0',
message: 'work',
done: false
},
{
id: '1',
message: 'movie',
done: false
},
{
id: '2',
message: 'Play',
done: false
}]
在我的 NgRx 减速器中,有以下代码块:
case todosAction.FETCH_TODO_SUCCESS: {
return {
...state,
//action.payload contains above array of objects
datas: action.payload.reduce((accumulateur, iteration) => {
accumulateur[iteration.id] = iteration;
return accumulateur;
}, { ...state.datas }),
loading: false,
loaded: true,
error: null
};
}
我正在使用的状态如下所示:
export interface TodoState {
datas: {
[todoId: string]: Todo
}
loading: boolean;
loaded: boolean;
error: any;
}
我们在这里使用 reduce 函数将原始源(对象数组)转换为实体(键是与todo
对象关联的 id)。我理解我们使用这个函数的原因,但我不明白它的内部代码:
action.payload.reduce((accumulateur, iteration) => {
accumulateur[iteration.id] = iteration; // <-- AS FAR AS I UNDERSTAND, ACCUMULATOR IS NOT AN ARRAY, HOW CAN WE ACHIEVE SUCH A THING
return accumulateur;
}, { ...state.datas })
预先感谢您帮助我阐明这一点。