react-router v4不能使用this.props.children了吗?

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

阅读 5k
2 个回答

几个月前翻译了 react-router v4 的文档,这个 API 是属于 React,react-router v4 可以用。

this.props.children 属于 React 的 API, 报错的话注意 this 的指向

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题