5

我有这个代码来检查用户是否经过身份验证

const withAuth = AuthComponent => {
  class Authenticated extends Component {
    static async getInitialProps (ctx) {
      let componentProps
      if (AuthComponent.getInitialProps) {
        componentProps = await AuthComponent.getInitialProps(ctx)
      }
      return {
        ...componentProps
      }
    }
    componentDidMount () {
      this.props.dispatch(loggedIn())
    }
    renderProtectedPages (componentProps) {
      const { pathname } = this.props.url
      if (!this.props.isAuthenticated) {
        if (PROTECTED_URLS.indexOf(pathname) !== -1) {
          // this.props.url.replaceTo('/login')
          Router.replace('/login')                   // error
        }
      }
      return <AuthComponent {...componentProps} />
    }
    render () {
      const { checkingAuthState, ...componentProps } = this.props
      return (
        <div>
          {checkingAuthState ? (
            <div>
              <h2>Loading...</h2>
            </div>
          ) : (
            this.renderProtectedPages(componentProps)
          )}
        </div>
      )
    }
  }
  return connect(state => {
    const { checkingAuthState, isAuthenticated } = state.data.auth
    return {
      checkingAuthState,
      isAuthenticated
    }
  })(Authenticated)
}

它很好用,但是当我尝试重定向用户时出现此错误:

未找到路由器实例。您应该只在应用程序的客户端内使用“next/router”。

如果我尝试使用this.props.url.replaceTo('/login')我会收到此警告

警告:'url.replaceTo()' 已被弃用。使用“下一个/路由器”API。

所以这让我发疯,我想知道是否有办法实现这种重定向,或者在这种情况下控制身份验证的另一种方法只是一个线索会很好。

4

2 回答 2

2

您可能应该检查您的代码是在服务器端还是在客户端执行。这边走:

const isClient = typeof document !== 'undefined'
isClient && Router.replace('/login') 

为了处理服务器端的重定向,您可以简单地使用您的服务器来执行此操作。例如:

server.get("/super-secure-page", (req, res) => {
  // Use your own logic here to know if the user is loggedIn or not
  const token = req.cookies["x-access-token"]
  !token && res.redirect("/login")
  token && handle(req, res)
})

仅供参考,我受到了next.js 代码示例的启发

于 2017-08-09T12:06:31.800 回答
0

我也想在服务器端找到解决方案。但我通过写“document.location = xxx”在客户端修复它

于 2017-07-20T03:28:56.780 回答