admin管理员组文章数量:1344224
How to access the refs of children in a parent to do something with them in the parent function?
class Parent extends Component {
someFunction(){
// how to access h1 element of child in here ??
}
render() {
return (
<Child />
);
}
}
class Child extends Component {
render() {
return (
<h1 ref="hello">Hello</h1>
);
}
}
How to access the refs of children in a parent to do something with them in the parent function?
class Parent extends Component {
someFunction(){
// how to access h1 element of child in here ??
}
render() {
return (
<Child />
);
}
}
class Child extends Component {
render() {
return (
<h1 ref="hello">Hello</h1>
);
}
}
Share
Improve this question
edited Jul 17, 2019 at 1:31
shriek
5,8538 gold badges52 silver badges83 bronze badges
asked Mar 10, 2017 at 6:29
Amit MAmit M
511 gold badge1 silver badge3 bronze badges
1
- the second line of the question is actually first line of the code . cant format that because of this stupid checks this website has in place – Amit M Commented Mar 10, 2017 at 6:39
3 Answers
Reset to default 5To add to Shubham's answer, the child refs have to be accessed inside of ponentDidMount() inside parent. Something like:
class Parent extends React.Component {
ponentDidMount(){
var elem1 = this.refs.child1.refs.childRefName;
}
return (
<View>
<Child1 ref='child1'/>
<Child2 />
<Child3 />
</View>
);
}
You can access the child refs by providing a ref to the child element and accessing it like ReactDOM.findDOMNode(this.refs.child.refs.hello)
In your case the child ponent doesn't begin with Uppercase letter which you need to change.
class App extends React.Component {
ponentDidMount() {
console.log(ReactDOM.findDOMNode(this.refs.child.refs.hello));
}
render() {
return (
<Child ref="child"/>
);
}
}
class Child extends React.Component {
render() {
return (
<h1 ref="hello">Hello</h1>
);
}
}
ReactDOM.render(<App/>, document.getElementById('app'));
<script src="https://cdnjs.cloudflare./ajax/libs/react/15.1.0/react.min.js"></script>
<script src="https://cdnjs.cloudflare./ajax/libs/react/15.1.0/react-dom.min.js"></script>
<divi id="app"></div>
You can also use React.forwardingRef
method to make the Child
ponent able to receive and define a ref
from its parent.
Here is the documentation for the method:
https://reactjs/docs/forwarding-refs.html
And here is an example of how you might implement it in your code:
const Child = React.forwardRef((_, ref) => (
<h1 ref={ref}>Child Component</h1>
));
function Parent() {
var h1 = React.createRef();
React.useEffect(() => {
console.log(h1.current);
});
return <Child ref={h1} />;
}
https://reactjs/docs/forwarding-refs.html
I hope it helps.
本文标签: javascriptReactJs How to access child components refs from parentStack Overflow
版权声明:本文标题:javascript - ReactJs How to access child components refs from parent - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743715443a2526657.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论