将Array.reduce函数与NgRx应用程序中的对象一起使用

时间:2018-04-19 09:23:23

标签: javascript angular ngrx reducers ngrx-entity

在NgRx Angular 5项目中,有一个我不太了解的reduce函数的使用。我很感激一些帮助

基本上,代码迭代一个对象数组,数组如下所示:

[{
   id: '0',
   message: 'work',
   done: false
 },
 {
   id: '1',
   message: 'movie',
   done: false
 },
 {
   id: '2',
   message: 'Play',
   done: false
 }]

在我的NgRx reducer中,有以下代码块:

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 })

提前感谢您帮我详细说明。

1 个答案:

答案 0 :(得分:1)

想象一下

state.datas等于:

{
  '0': {
    id: '0',
    message: 'Hello',
    done: false
  }
}

action.payload等于

[{
  id: '1',
  message: 'World',
  done: false
}]

减速器返回后,您将以

结束
{
  '0': {
    id: '0',
    message: 'Hello',
    done: false
  },
  '1': {
    id: '1',
    message: 'World',
    done: false
  }
}

需要注意的重要一点是id是一个字符串。您可以拥有一个密钥为'0'的对象。它与使用任何其他字符串没有什么不同。