我对sessiontimeout和注销有一个redux操作。调用Sessiontimeout时,在内部调用注销函数。
=IF(OR(B2="",C2="")
动作类型未调度也无法正常工作。
我想如何在Sessiontimeout中调用注销并分派SESSIONTIMEOUT
和SESSIONTIMEOUT
LOGOUT
答案 0 :(得分:1)
只需在logout()
操作之后立即分发SESSIONTIMEOUT
。
export function sessionTimeOut(){
return (dispatch) => {
dispatch({
type: ACTIONTYPES.SESSIONTIMEOUT
});
dispatch(logout());
}
}