我有以下结构为我的React.js应用程序使用React路由器:
var Dashboard = require('./Dashboard');
var Comments = require('./Comments');
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>
);
ReactRouter.run(routes, function (Handler) {
React.render(<Handler/>, document.body);
});
我想把一些属性传递给Comments组件。
(通常我会这样做,如<Comments myprop="value" />)
用React路由器最简单和正确的方法是什么?
对于react路由器2.x。
const WrappedComponent = (Container, propsToPass, { children }) => <Container {...propsToPass}>{children}</Container>;
在你的路线上…
<Route path="/" component={WrappedComponent.bind(null, LayoutContainer, { someProp })}>
</Route>
确保第3个参数是一个类似于:{checked: false}的对象。
对于react路由器2.x。
const WrappedComponent = (Container, propsToPass, { children }) => <Container {...propsToPass}>{children}</Container>;
在你的路线上…
<Route path="/" component={WrappedComponent.bind(null, LayoutContainer, { someProp })}>
</Route>
确保第3个参数是一个类似于:{checked: false}的对象。
我已经在这里回答了这个问题。
下面是几种将道具传递给路由组件的方法。
使用react-router v5,我们可以通过封装组件来创建路由,这样我们就可以像这样轻松地将道具传递给所需的组件。
<Route path="/">
<Home name="Sai" />
</Route>
类似地,您可以在v5中使用子道具。
<Route path="/" children={ <Home name="Sai" />} />
如果您正在使用react-router v4,您可以使用渲染道具传递它。
旁注-引用React路由器children-func文档
有时您需要呈现路径是否匹配位置或
不是。在这些情况下,您可以使用函数child prop。它的工作原理
和渲染完全一样,除了它会被调用是否有
匹配与否。
<Route path="/" render={() => <Home name="Sai" />} />
(最初发布于https://reactgo.com/react-router-pass-props/)