我想知道下面示例中IndexRoute
和DefaultRoute
之间的区别是什么?据我所知,在这两种情况下都会呈现Home
,对吧?
<Route path="/" handler={App}>
<IndexRoute handler={Home}/>
<Route path="about" handler={About}/>
</Route>
和
<Route path="/" handler={App}>
<DefaultRoute handler={Home}/>
<Route path="about" handler={About}/>
</Route>
答案 0 :(得分:8)
DefaultRoute
从react-router v1.0开始消失了。而是引入了IndexRoute
。
来自文档:
// v0.13.x
// with this route config
<Route path="/" handler={App}>
<DefaultRoute name="home" handler={Home}/>
<Route name="about" handler={About}/>
</Route>
// v1.0
<Route path="/" component={App}>
<IndexRoute component={Home}/>
<Route path="about" component={About}/>
</Route>
中的更多内容