gpt4 book ai didi

javascript - React-router:IndexRoute 与 DefaultRoute

转载 作者:搜寻专家 更新时间:2023-11-01 05:10:37 26 4
gpt4 key购买 nike

我想知道下面示例中的 IndexRouteDefaultRoute 有什么区别?据我了解,在这两种情况下 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>

最佳答案

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>

更多内容在 upgrade guide.

关于javascript - React-router:IndexRoute 与 DefaultRoute,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32806296/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com