如果URL包含某些关键字,则使用react-router-dom
来重定向页面,如果条件有效并且URL更改为localhost:3000/SharingLink
,但是直到我按URL栏中的键盘输入按钮,页面才会加载。有人知道为什么吗?我尝试过withRouter
,但没有运气
import { Redirect } from 'react-router-dom'
render() {
if (window.location.href.includes(('?SharingToken='))) {
return <Redirect to='/SharingLink' />
}
return <LoginPage />;
}