反应中的身份验证流程

时间:2016-04-14 19:26:50

标签: authentication reactjs store redux

我有一个在容器级别具有身份验证的应用程序(出路),我正在使用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

问题:

  1. 我的身份验证操作应该在哪里生效?我可以从更高的命名空间调用它进入我的组件吗?
  2. 我可以使用身份验证操作包装我的下一步操作吗?某处有一个很好的例子吗?我只见过单店验证。或者我应该如何处理这个?
  3. 如何从下方组件中访问登录操作?

0 个答案:

没有答案