如何在不使用forwardedRef的情况下使用打字稿在react hoc中创建ref

时间:2020-10-13 07:09:18

标签: reactjs typescript react-ref react-hoc

这是我的代码:

import React, {
  InputHTMLAttributes,
  Component,
  ComponentClass,
  TextareaHTMLAttributes
} from 'react';


// type TElementType = HTMLInputElement | HTMLTextAreaElement;
// type TAttributesType =
//   | InputHTMLAttributes<HTMLInputElement>
//   | TextareaHTMLAttributes<HTMLTextAreaElement>;

interface IClassType {
  somevalue: string;
}

type TElementType = HTMLInputElement;
type TAttributesType = InputHTMLAttributes<HTMLInputElement>;

const withInput = (Comp: ComponentClass<TAttributesType>): ComponentClass<IClassType> => {
  class MyInput extends Component<IClassType> {
    private refValue = React.createRef<TElementType>();

    componentDidMount() {
      console.log('do something');
    }

    render() {
      return (
        <>
          <Comp
            name="someinput"
            value="somevalue"
            type="text"
            ref={ref => {
              this.refValue = ref;
            }}
          />
        </>
      );
    }
  }

  return MyInput;
};

export default withInput;

这是此错误。refValue = ref:

Type'Component | “ null”不可分配给“ RefObject”类型。 不能将类型“ null”分配给类型“ RefObject”。

我在网上看过,只能找到forwardedRefs的示例。我不需要从传递的组件中转发引用,因为该引用仅在我的临时容器中是必需的。

0 个答案:

没有答案