我有一个在容器级别具有身份验证的应用程序(出路),我正在使用redux-auth-wrapper来验证组件。
在这些组件中,我想要进行仅影响本地状态的经过身份验证的调用。有时服务器可能会返回401,在这种情况下,我知道我需要使用以下内容刷新令牌:status === 401 && myLoginAction()
结构看起来像这样:
Container [Connects to root store with auth]
|- Auth
|- Login
|- Authenticated page wrapped with redux-auth-wrapper
|- Action to update state, needs to be authenticated