代码如下:
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对象呢??