使用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({对象内容}))
022020-01-05
相似问题