代码之家  ›  专栏  ›  技术社区  ›  handsome

反应16.7受保护路线

  •  3
  • handsome  · 技术社区  · 6 年前

    我想保护路由,并使它们只对经过身份验证的用户可用。 问题是,在执行fetch()并更新 上下文 (这需要一些时间)

    当获取完成且上下文状态为authenticated=false时,我想将用户重定向到/login

    import { Route, Switch } from 'react-router-dom'
    import { MyContext } from './Context'
    
    ...
    
    <MyContext.Consumer>
        {(context) => (
    
            <Switch>
                <Route path="/" exact strict component={Homepage}/>
                <Route path="/this-is-a-protected-route" exact strict component={Admin}/>
                <Route path="/login" exact strict component={Login}/>
            </Switch>
    
        )}
    </MyContext.Consumer>
    

    这是上下文

    export const MyContext = React.createContext()
    
    export class MyProvider extends Component {
    
        state = {
            'isAuthenticated': false,
        }
    
        componentDidMount() {
    
            fetch('/authenticated')
                .then(
                    function(response) {
                        response.json().then(function(data) {
                            this.setState({'isAuthenticated': true})
                        });
                    }
                )
                .catch(function(error) {
                    console.log('fetch error', error);
                });
        }
    
        render() {
            return (
                <MyContext.Provider value={{
                    isAuthenticated: this.state.isAuthenticated
                }}>
                    {this.props.children}
                </MyContext.Provider>
            )
        }
    }
    

    理想情况下,只有在点击/this-is-a-protected-route和state.isAuthenticated=false(但这是默认值!)

    为了简洁起见,我删除了一些代码,以便我们可以集中精力解决这个问题。希望你能理解谢谢!

    1 回复  |  直到 6 年前
        1
  •  2
  •   Valerii    6 年前

    只有经过用户身份验证,才能呈现受保护的路由

    {context.isAuthenticated ? 
       <Route path="/this-is-a-protected-route" exact strict component={Admin}/> :
       <Redirect to='/login' />
    }
    

    专用路由可以移动到单独的组件。

    更多细节和示例 here .