在React样式组件上使用'ref&39;不起作用

我在使用ref样式组件时遇到困难。当我尝试在如下所示的类方法中访问它们时,我收到以下错误:

Edit.js:42未捕获的类型错误:此.....包含的不是函数

  constructor(props) {
    ....
    this.setWrapperRef = this.setWrapperRef.bind(this);
    this.handleClickOutside = this.handleClickOutside.bind(this);
   }
----------
  setWrapperRef = (node) => {
    this.wrapperRef = node;
  }
  handleEdit = (e) => {
    e.preventDefault();
    this.props.onEdit(this.props.id, this.state.title);
  }
----------
<Wrapper onSubmit={this.handleEdit} ref={this.setWrapperRef}>
  ...
</Wrapper>

我从this question

找到代码

我做错了什么?


解决方案

我自己找到了答案。解决方案是使用innerRef而不是ref,因为ref本身指向样式化组件而不是DOM节点。

有关详细讨论,请参阅GitHub

相关文章