0

通常我们可以通过在构造函数内部编写来在基于 ReactcreateRef()类的组件中使用。this.myRef = React.createRef();

我的问题是:

有没有办法ref在基于函数的组件中使用?

这是在基于类的组件中使用 refs 的常规方法:

class MyComponent extends React.Component {
  constructor(props) {
    super(props);
    this.myRef = React.createRef();
  }
  render() {
    return <div ref={this.myRef} />;
  }
}
4

0 回答 0