gpt4 book ai didi

javascript - 使用 List 更改 ImmutableJS 嵌套对象并返回整个状态(Redux)

转载 作者:行者123 更新时间:2023-11-30 15:01:20 25 4
gpt4 key购买 nike

我的状态是一个嵌套的不可变事物:

const state = Map({ counter: 0, 
people: List([
Map({name: "John", age: 12, etc...}),
Map({name: "Jim", age: 13, etc...}),
Map({name: "Jack", age: 21, etc...})
])
});

所以我有一个 map ,它包含一个计数器和 map 列表。我在这里简化了一些事情,但是说我想在我的 reducer 中更改 John 的一些属性。

现在我正在做这样的事情:

    var newState = state
.get('people') //get the list
.get(action.payload.pos) //pos is an integer, & describes the position of the object in the List
.set('name', action.payload.name)
.set('age', action.payload.age);

我的问题是我不知道如何在 John 中设置属性并恢复整个状态,所以我可以在我的 reducer 中返回它。现在我得到的只是我正在改变的部分。

第二个问题是写下所有这些的方式很长。我知道有嵌套结构的语法,但我这里有一个 List,它打破了这个,所以我有点卡住了。

最佳答案

您可以使用.findIndex 找到要更新的索引(如果您还没有),然后在.updateIn 中使用该索引。打电话,连同.merge合并旧值和新值。

const state = 
new Immutable.Map({
counter: 0,
people: new Immutable.List([
new Immutable.Map({name: "John", age: 12, otherVal: 'a'}),
new Immutable.Map({name: "Jim", age: 13, otherVal: 'b'}),
new Immutable.Map({name: "Jack", age: 21, otherVal: 'c'})
])
});

const newValues = { name: 'Jones', age: 100};

// find index to update
const indexToUpdate = state
.get('people')
.findIndex(person => person.get('name') == 'Jim');
// use .updateIn to perform a merge on the person of interest
const newState =
state.updateIn(
['people', indexToUpdate],
person => person.merge(newValues)
);

console.log(
'new state is:\n',
JSON.stringify(newState.toJS(), null, 2)
);
<script src="https://cdnjs.cloudflare.com/ajax/libs/immutable/3.7.2/immutable.min.js"></script>

关于javascript - 使用 List 更改 ImmutableJS 嵌套对象并返回整个状态(Redux),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46486083/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com