text 传递道具来反应路由器组件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 传递道具来反应路由器组件相关的知识,希望对你有一定的参考价值。

Hey @channel, I would instead recommend using this method if you need to pass props into a component triggered via React Router, as it avoids creating a brand new component which then mounts/remounts every render. The syntax is clunky, but it performs better and doesn't lag down our app. 

`<Route exact path="/signup" render={(props) => <Auth {...props} action="signup" />} />`

*Hint:* It's also recommended that we pass on the `{...props}` you see above so you don't lose access to the existing props for that component, for example this.props.match from React Router.

https://tylermcginnis.com/react-router-pass-props-to-components/

以上是关于text 传递道具来反应路由器组件的主要内容,如果未能解决你的问题,请参考以下文章

在 reactJS 中从反应路由器链接传递道具

使用时反应路由器传递道具[重复]

使用按钮上的道具路由到新组件单击反应

将道具传递给动态反应组件

反应:内联有条件地将道具传递给组件

更新来自其他组件的道具反应原生