react 부모 구성 요소 호출 하위 구성 요소 방법

하위 구성 요소 의 인 자 를 부모 구성 요소 에 되 돌려 주 고 하위 구성 요소 에 값 을 부여 하 는 인 스 턴 스 방법 입 니 다.
React 중국어 망 참조: http://www.css88.com/react/docs/refs-and-the-dom.html
import React, {Component} from 'react';

export default class Parent extends Component {
    render() {
        return(
            <div>
                this.onRef} />
                
            div>
        )
    }

    onRef = (ref) => {
        this.child = ref
    }

    click = (e) => {
        this.child.myName()
    }

}

class Child extends Component {    componentDidMount(){        //       ,   ref        
        this.props.onRef(this)
    }

    myName = () => alert('    ')

    render() {
        return ('lalalala')
    }
}

다음으로 전송:https://www.cnblogs.com/gwf93/p/10295119.html

좋은 웹페이지 즐겨찾기