繁体   English   中英

ReactJS 需要从 class 组件外部调用 function

[英]ReactJS need to call function from outside class component

我有一些不同的第三方代码,我需要能够从外部调用 function

//**Import**

import React from 'react'
// .... etc..

//**function I need to have call the function inside react component**

function showDescription(element) {
    // NEED to call function inside component class 
    this.

}

//**Class Component is here and notice state is set, and onClick had bind**

class SectionE extends React.Component {
    constructor(props){
        super(props);
        this.state = {
          visible: false   // setting to true will display the modal dialog box
        }
        this.onClick = this.onClick.bind(this);
    }

//**This is the What I want to call from outside!**     

    onClick() {
        this.setState({visible: true}); // show modal dialog
    }

//**Mount, calling in here works fine**         

    componentDidMount() {

        //this works as another test
        // this.onClick();
    }   

     render()
    {
        return(

//**Testing calling is works fine (Inside )**

    // manually show dialog   this works
   <button type="button" icon="pi pi-external-link" onClick={this.onClick} className="btn btn-primary" id="btnImportant">Add Important People</button>

//**3rd party primereact modal dialog** 

     <Dialog id="modal" header="Important People for ...." visible={this.state.visible} style={{width: '75vw'}} footer={footer} onHide={this.onHide} maximizable>
                    <ImportantFamily/>
     </Dialog>
     )
    }
}

 export default SectionE;

所以它不是我试图调用的子组件或父组件,而是 class 组件之外的代码。 因此,我看不到Ref甚至会如何工作。

我在 React 组件之外拥有的 SurveyJS 3rd 方代码还有更多代码,这是该代码在外部起作用的最大原因。

我有哪些选择?

我认为您最好的选择是向您的SectionE组件添加一个道具,然后收听该道具的更新,例如在您添加SectionE的位置添加一个名为“可见”的道具,您可以在其中从 SectionE class 外部设置该可见变量:

<SectionE visible={visible} />

然后在 SectionE 发生变化时做一些事情:

// this is inside your SectionE class:
componentDidUpdate(prevProps) {
    if (prevProps.visible !== this.props.visible) {
        this.setState({visible: this.props.visible}); // show/hide modal dialog
    }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM