使用immutable如何往数组里push

来源:7-9 使用 Immutable.js 来管理store中的数据

慕丝6087395

2019-10-25

代码如下:
const defaultState=fromJS({
username:’’,
password:’’,
userInfoList:[],
})
现在想往userInfoList中push元素:
case ‘ADD_USER_INFO_LIST’:
const userItem={
username:action.username,
password:action.password
}
return
请问在immutableJS里return后面应该怎么写?才能往userInfoList中push 这个userItem对象呢??

写回答

1回答

Dell

2019-10-31

state.get('userInfoList').push(fromJS({对象内容}))

0
2
Dell
回复
Nnn_Lillian
你代码贴上来我看一下
2020-01-05
共2条回复

React零基础入门到实战,完成企业级项目简书网站开发

主流新技术 React-redux,React-router4,贯穿基础语法

5275 学习 · 2496 问题

查看课程