使用反应,将子组件函数公开给ref

这个链接描述了如何在一个组件上设置ref,并从父级调用它的函数:https://facebook.github.io/react/tips/expose-component-functions.html

当我使用react-router并且我想要ref的组件是一个路由并且父组件是根组件时,我该如何实现这一点?


这有效:给<RouteHandler/>一个ref,像这样: <RouteHandler ref="routerHandler"/>

然后像这样调用: this.refs.routerHandler.refs.__routeHandler__.someFunctionOnActiveRoutesHandler()

链接地址: http://www.djcxy.com/p/52145.html

上一篇: Expose child component functions to parent with ref using react

下一篇: Importing CSS files in Isomorphic React Components