最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - ReactJs How to access child components refs from parent - Stack Overflow

programmeradmin1浏览0评论

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
Add a ment  | 

3 Answers 3

Reset to default 5

To 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.

发布评论

评论列表(0)

  1. 暂无评论