ant-mobile 的 TabBar 组件怎么和 react-router 配合使用?

ant-mobile 官方 DEOM 是把几个 VIEW 事先渲染在整个 TabBar 组件当中的,效果很好。但现在我想和 react-router 配合使用

我能想到的是通过 TabBar.ItemonPress 属性来传递 path

onPress={() => {
  this.showView('/')
}}

//...

onPress={() => {
  this.showView('/about')
}}

//...
showView(path) {
  browserHistory.push(path)
  // window.location.href = path
}

如上所示,browserHistory.push() 也能看到地址栏有改变,但 Router 并没有被切换

而在 TabBar.Item 中又无法直接嵌套 Link

不知道大家是怎么解决这个问题的?

阅读 4.4k
2 个回答

请问解决了吗?现在正被困扰着。路由到底怎么配置。才能地址栏变,TabBra中的内容也变。

宣传栏