我正在尝试使用 React.forwardRef,但在如何让它在基于类的组件(不是 HOC)中工作时遇到了麻烦。
文档示例使用元素和功能组件,甚至将类包装在高阶组件的函数中。
因此,从像这样在他们的ref.js
文件:
const TextInput = React.forwardRef(
(props, ref) => (<input type="text" placeholder="Hello World" ref={ref} />)
);
而是将其定义为这样的:
class TextInput extends React.Component {
render() {
let { props, ref } = React.forwardRef((props, ref) => ({ props, ref }));
return <input type="text" placeholder="Hello World" ref={ref} />;
}
}
或者
class TextInput extends React.Component {
render() {
return (
React.forwardRef((props, ref) => (<input type="text" placeholder="Hello World" ref={ref} />))
);
}
}
只工作:/
另外,我知道我知道,裁判不是react方式。我正在尝试使用第三方画布库,并希望在单独的组件中添加他们的一些工具,因此我需要事件侦听器,因此我需要生命周期方法。以后可能会走不同的路线,但我想试试这个。
医生说这是可能的!
Ref 转发不仅限于 DOM 组件。您也可以将引用转发到类组件实例。
但随后他们继续使用 HOC 而不仅仅是类。