ReactRouter在组件外部使用导航实现教程
程序员文章站
2022-04-24 17:23:56
在组件外部使用导航
虽然在组件内部可以使用this.context.router来实现导航,但许多应用想要在组件外部使用导航。使用Router组件上被赋予的history可以在组...
在组件外部使用导航
虽然在组件内部可以使用this.context.router来实现导航,但许多应用想要在组件外部使用导航。使用Router组件上被赋予的history可以在组件外部实现导航。
// your main file that renders a Router import { Router, browserHistory } from 'react-router' import routes from './app/routes' render(, el)
// somewhere like a redux/flux action file: import { browserHistory } from 'react-router' browserHistory.push('/some/path')
上一篇: ios9以下flex兼容问题解决
下一篇: 小姐也换