如何在 React 中重定向

Posted

技术标签:

【中文标题】如何在 React 中重定向【英文标题】:How to redirect in React 【发布时间】:2018-03-22 14:28:50 【问题描述】:

我有一个反应应用程序,它充当仪表板并显示不同的链接 反应应用程序。用户可以通过单击按钮来选择应用程序。 简而言之,我需要根据用户选择重定向到不同的 URL。

在下面的示例代码中,尝试使用 withRouter 重定向到 URL。但是它给出了以下错误: TypeError:无法读取未定义的属性“推送”

我正在使用 React 15.6.1。

index.js

render(
    <BrowserRouter>
        <Home />
    </BrowserRouter>, document.getElementById('app')
);

home.js

class Home extends React.Component 

    constructor(props) 
        super(props);
        this.loadApp1 = this.loadApp1.bind(this);
    

    loadApp1() 
        this.props.route.push('/app1');
    
    render() 
        return (
            <div>
                 <button onClick=this.loadApp1>App1</button>
            </div>
        );
    


export default withRouter(Home);

【问题讨论】:

我更新了我的答案。有帮助吗? 【参考方案1】:

您可以使用链接来执行此操作:

import  Link  from react-router-dom;

那么,

<button><Link to="/app1">App1</Link></button>

将路由到 App1 路由。

对于外部网站,您可以这样做:

   loadApp1() 
        window.location = "example.com";
    

【讨论】:

我需要路由到这个 react 应用之外的外部应用 我已更新答案以包含外部页面。 感谢@Dream_Cap 很有帮助!【参考方案2】:

你的loadApp1应该是

 loadApp1() 
    this.props.history.push('/app1');

【讨论】:

以上是关于如何在 React 中重定向的主要内容,如果未能解决你的问题,请参考以下文章

如何在 React 中重定向到另一个视图

使用 Typescript 在 React 中重定向

使用护照进行身份验证后,如何在 React FROM express 中重定向到用户仪表板

在 react-router-dom 中重定向?

使用 react-router-dom v4 在 redux 操作中重定向

如果令牌过期,如何在 apollo 客户端中重定向或导航