刚从react-router2.8升到4,出现了几个问题,请教下大家。
我从主页跳到个人中心,是没问题的,链接正常:'localhost:8080/center';
但是从详情页跳到个人中心,链接就会有问题:'localhost:8080/detail/center';
是Link还需要配置什么选项么?
这是路由配置:
<Switch>
<Route exact path="/" ></Route>
<Route path="/detail/:uniquekey" ></Route>
<Route path="/center" ></Route>
</Switch>
这是链接:
<Link to={`center`}>
个人中心
</Link>
蝴蝶不菲
相关分类