在利用 React Router 的 React 应用程序中,需要将属性传递给动态加载的处理程序组件。
考虑以下 React Router 配置:
<code class="javascript">var Index = React.createClass({ render: function () { return ( <div> <header>Some header</header> <RouteHandler /> </div> ); } }); var routes = ( <Route path="/" handler={Index}> <Route path="comments" handler={Comments}/> <DefaultRoute handler={Dashboard}/> </Route> );</code>
要将属性传递给 Comments 组件,您可以扩展 Index 组件,如下所示:
<code class="javascript">class Index extends React.Component { // using babel here constructor(props) { super(props); } render() { return ( <h1> Index - {this.props.route.foo} </h1> ); } } var routes = ( <Route path="/" foo="bar" component={Index}/> );</code>
这种方法允许您访问直接在 Index 组件中使用 foo 属性,有效地将其传递给 Comments 组件。
以上是如何将属性传递给 React Router 中的处理程序组件?的详细内容。更多信息请关注PHP中文网其他相关文章!