仅重定向更改URL,但不加载页面

时间:2019-09-24 16:01:35

标签: reactjs redirect react-router-dom

如果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 />;
}

0 个答案:

没有答案