这样配置好以后,每次调用Route都会报错
“You tried to redirect to the same route you're currently on: "/home"”
请问该怎么优化呢?
<Router>
<div>
<Nav/>
<Redirect to="/home"></Redirect>
<Route path="/comment" component={CommentBox}></Route>
<Route path="/home" component={Home}></Route>
<Route path="/productList" component={ProductList}></Route>
<Route path="/showdetail" component={ShowDetail}></Route>
<Route path="/showdetail/:id" component={ShowDetail}></Route>
<Route path="/login" component={Login}></Route>
<Route path="/private" component={Private}></Route>
</div>
</Router>
holdtom
波斯汪
相关分类