ant-mobile 官方 DEOM 是把几个 VIEW 事先渲染在整个 TabBar 组件当中的,效果很好。但现在我想和 react-router 配合使用
我能想到的是通过 TabBar.Item
的 onPress
属性来传递 path
onPress={() => {
this.showView('/')
}}
//...
onPress={() => {
this.showView('/about')
}}
//...
showView(path) {
browserHistory.push(path)
// window.location.href = path
}
如上所示,browserHistory.push()
也能看到地址栏有改变,但 Router
并没有被切换
而在 TabBar.Item
中又无法直接嵌套 Link
不知道大家是怎么解决这个问题的?
https://segmentfault.com/a/11...
参考了这个问题,还是挺管用的