美文网首页
react中调用子组件的方法

react中调用子组件的方法

作者: 夏夏夏夏顿天 | 来源:发表于2021-05-27 13:54 被阅读0次

    class组件

    父组件

    import React, { Component } from "react";
    import Child from './child'
    export default class Parent extends Component {
    
    componentDidMount(){
        //被调用的子组件
        this.child.test('参数')
    }
    
    onRef(ref){this.child = ref}
    
    render() {
        return (
          <div>
            <Child onRef={this.onRef} />
          </div>
        );
      }
    }
    

    子组件

    import React, { Component } from "react";
    
    export default class Child extends Component {
    
    componentDidMount(){
        this.props.onRef(this)
    }
    //子组件被调用方法
    test(val){
        alert('我是测试方法'+val)
    }
    
    render() {
        return (
          <div>
                我是子组件
          </div>
        );
      }
    }
    

    react hook 父组件调用子组件方法

    父组件

    import {useRef} from 'react'
    import ChildComp from './ChildComp'
    export default function App() {
        const childRef = useRef();
        const updateChildState = () => {
            // changeVal就是子组件暴露给父组件的方法
            childRef.current.changeVal(99);
        }
        return (
            <>
                {/* 此处注意需要将childRef通过props属性从父组件中传给自己 cRef={childRef} */}
                <ChildComp  cRef={childRef} />
                <button onClick={updateChildState}>触发子组件方法</button>
            </>
        )
    }
    
    

    子组件

    import { useState, useImperativeHandle } from 'react';
    // props子组件中需要接受ref
    export default function ChildComp({ cRef }) {
        const [val, setVal] = useState();
        function rules(a) {
            console.log(a);
        }
        // 此处注意useImperativeHandle方法的的第一个参数是目标元素的ref引用
        useImperativeHandle(cRef, () => ({
            // changeVal 就是暴露给父组件的方法
            changeVal: (newVal) => {
                rules(newVal);
            }
        }));
        return (
            <div>{val}</div>
        )
    }
    

    相关文章

      网友评论

          本文标题:react中调用子组件的方法

          本文链接:https://www.haomeiwen.com/subject/sporsltx.html