immutable中Map中嵌套的List怎么更新?

有没有对immutable比较了解的朋友?

immutable中Map中嵌套的List怎么更新?

就是Map中嵌套了一个List,List中的每一个元素又是Map,现在知道List中的一个元素的id,然后我想根据这个id来更新这个元素,应该要怎么做?

单独的一个Map或者List我是知道怎么更新的,但是如果是嵌套的呢?

阅读 4.8k
3 个回答
const nested4 = nested3.updateIn([ 'a', 'b', 'c' ], list => list.push(6))
// Map { a: Map { b: Map { c: List [ 3, 4, 5, 6 ], d: 7 } } }
return state.updateIn(['adminList', index, 'phone'], () =>  phone)
            .updateIn(['adminList', index, 'email'], () =>  email)

update单独更新一个,如果多层嵌套,采用updateI([A,B,C],() => value),其中ABC表示在A对象下面的B对象下面的C对象,()=>value表示更新成什么数据

新手上路,请多包涵

let listData = List([

{id: 1, name: "first", count: 2},
{id: 2, name: "second", count: 1},
{id: 3, name: "third", count: 2},
{id: 4, name: "fourth", count: 1}

])
想要更新 name=first 中的Count中的值

let list = state.getIn(['listData']);
list = list.update(list.findIndex(function(item){

return item.get('name') ==='third'; 
}),function(item){
    return item.set('count',400) 
} 

);

可是会报错 "item.get is not a function"

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题