Call child method from parent

前端 未结 16 2133
长发绾君心
长发绾君心 2020-11-21 22:23

I have two components.

  1. Parent component
  2. Child component

I was trying to call child\'s method from Parent, I tried this way but couldn\

16条回答
  •  猫巷女王i
    2020-11-21 23:04

    First off, let me express that this is generally not the way to go about things in React land. Usually what you want to do is pass down functionality to children in props, and pass up notifications from children in events (or better yet: dispatch).

    But if you must expose an imperative method on a child component, you can use refs. Remember this is an escape hatch and usually indicates a better design is available.

    Previously, refs were only supported for Class-based components. With the advent of React Hooks, that's no longer the case

    Using Hooks and Function Components (>= react@16.8)

    const { forwardRef, useRef, useImperativeHandle } = React;
    
    // We need to wrap component in `forwardRef` in order to gain
    // access to the ref object that is assigned using the `ref` prop.
    // This ref is passed as the second parameter to the function component.
    const Child = forwardRef((props, ref) => {
    
      // The component instance will be extended
      // with whatever you return from the callback passed
      // as the second argument
      useImperativeHandle(ref, () => ({
    
        getAlert() {
          alert("getAlert from Child");
        }
    
      }));
    
      return 

    Hi

    ; }); const Parent = () => { // In order to gain access to the child component instance, // you need to assign it to a `ref`, so we call `useRef()` to get one const childRef = useRef(); return (
    ); }; ReactDOM.render( , document.getElementById('root') );
    
    
    
    

    Documentation for useImperativeHandle() is here:

    useImperativeHandle customizes the instance value that is exposed to parent components when using ref.

    Using Class Components (>= react@16.4)

    const { Component } = React;
    
    class Parent extends Component {
      constructor(props) {
        super(props);
        this.child = React.createRef();
      }
    
      onClick = () => {
        this.child.current.getAlert();
      };
    
      render() {
        return (
          
    ); } } class Child extends Component { getAlert() { alert('getAlert from Child'); } render() { return

    Hello

    ; } } ReactDOM.render(, document.getElementById('root'));
    
    
    

    Legacy API (<= react@16.3)

    For historical purposes, here's the callback-based style you'd use with React versions before 16.3:

    const { Component } = React;
    const { render } = ReactDOM;
    
    class Parent extends Component {
      render() {
        return (
          
    { this.child = instance; }} />
    ); } } class Child extends Component { getAlert() { alert('clicked'); } render() { return (

    Hello

    ); } } render( , document.getElementById('app') );
    
    
    
    

提交回复
热议问题