如何简化react-redux reducer状态的变化

时间:2018-03-14 00:49:41

标签: javascript reactjs react-redux

我有一个reducer,它的数据属性是一个对象数组。那就是基本上:

state.data[0] = {id: 1,name: 'joe',tired=true}
state.data[1] = {id: 2,name: 'linda',tired=false}
etc.

我发现,在我的减速机中,如果我想让琳达不累,我必须深入挖掘强制反应“不同”引擎认识到状态发生了变化。正如您在下面的代码中所看到的,我实际上创建了对所有内容的新引用。

有更简单的方法吗?我希望我理解diff如何更好地工作,以便在我为给定行设置属性为true时呈现我的对象。感觉就像我只是在抨击一切。

        const idToUpdate = 2;
        newState = Object.assign({}, state);
        let newData = [];
        newState.data.map(function(rec){
            if (rec.id === idToUpdate) {
                rec.interestLevel = 998;
                newData.push(rec);
            } else {
                newData.push(rec);
            }
        });
        newState.data = newData;

1 个答案:

答案 0 :(得分:1)

如果您知道要更新的ID,并假设您有一个对象数组,那么您可以执行类似

的操作
const {data} = this.state;
const arr = data;
const Linda = arr.filter(item => item.id === idToUpdate)
var TiredLinda = Linda.map(item => return {id:item.id, name:item.name, tired:true}
//Now remove Linda from the original array
arr.filter(item => item.id !== idToUpdate)
//Now we will push the updated Linda to arr to replace the one we removed
arr.push(TiredLinda);

现在您要设置数据的状态

this.setState({data:arr});