我正在使用react-router,並創建了一個PrivateRoute組件,該組件在驗證後顯示組件,否則重定向到登錄頁面。如何在反應中添加另一個道具...道具
我想要做的是傳遞一個額外的道具(認證)在調用者指定的頂部。
我似乎無法得到正確的語法,並搜索「...道具」沒有提出任何文檔。
這裏是我的代碼:
const PrivateRoute = ({ component: Component, ...rest }) => (
<Route {...rest} render={(props) => (
this.state.authentication.authenticated() ? (
<Component authentication:{this.state.authentication} {...props}/>
) : (
<Redirect to={{
pathname: '/login',
state: { from: props.location }
}}/>
)
)}/>
);