case 'ADD_POLL':
deepFreeze(state);
state = [
...state,
{
votingPolls: [
...state[state.length-1].votingPolls,
{
name : action.payload
}
]
}
];
return [state[state.length-1]];
这是我的reducer中的一个案例,由于某种原因,即使状态发生变化而没有任何突变,组件也不会更新。