react-native 父组件调用子组件的方法

子组件

componentDidMount() {

        this.props.oneRef(this);

 }

 _showModal=()=>{

        this.setState({ isVisible: true })

    }

父组件

             oneRef={this.oneRef}

/>

 oneRef=(ref)=>{

        this.waitAudit = ref

    }

                    style={{ height: 35, paddingRight: 10, paddingLeft: 10 }}

                    onPress={()=>{

                        that.waitAudit && that.waitAudit._showModal()

                    }}

>

     

你可能感兴趣的:(react-native 父组件调用子组件的方法)