通过React路由发送状态

时间:2017-07-17 12:11:50

标签: react-router

如何使用react-router通过路由发送状态? 目前我用this.context.router.push更改路线。 还有其他可能性吗?

      this.context.router.push({
            pathname: '/EmpReferralListView',
            state: {
                message: (typeof message != 'undefined') ? message : ''
            }
    });

1 个答案:

答案 0 :(得分:0)

如果您想以编程方式更改路线,那么推送是您的最佳选择。否则,您可以使用标准Link元素。