在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
相关文章