在React中,父组件要调用子组件的方法,可以使用ref属性。ref属性可以获取到子组件的实例,从而可以直接调用子组件的方法。 1. 在父组件中使用ref属性获取子组件的实例 ```jsx class ParentComponent extends React.Component { constructor(props) { super(props); this.childComponent = React.createRef(); } handle...