this.props.children
表示组件的所有子节点,react-router v4路由配置方式是否不需要使用this.props.children
?
before:
<Route path="/" component={App}>
<IndexRoute component={Home} />
<Route path="topics" component={Topics}/>
</Route>
然后用this.props.children
来渲染被App嵌套的路由的页面
after(react-router v4):
<Route path="/" component={App} />
<Route exact path="/" component={Home} />
<Route path="topics" component={Topics} />
<Route path="/topics/:id" component={Topic} />
这种路由是不是就没有包含关系,不存在使用this.props.children
?
几个月前翻译了 react-router v4 的文档,这个 API 是属于 React,react-router v4 可以用。