Typescript RefForwardingComponent not working

后端 未结 4 1596
天命终不由人
天命终不由人 2021-01-19 05:03

I am trying to make my component accept a ref.

I have a component like so:

const MyComponent: RefForwardingCom         


        
4条回答
  •  清酒与你
    2021-01-19 05:27

    RefForwardingComponent is a render function, which receives props and ref parameters and returns a React node - it is no component:

    The second ref argument only exists when you define a component with React.forwardRef call. Regular function or class components don’t receive the ref argument, and ref is not available in props either. (docs)

    That is also the reason, why RefForwardingComponent is deprecated in favor of ForwardRefRenderFunction, which is functionally equivalent, but has a different name to make the distinction clearer.

    You use React.forwardRef to turn the render function into an actual component that accepts refs:

    import React, { ForwardRefRenderFunction } from 'react'
    
    type IMyComponentProps = { a: string }
    const MyComponentRenderFn: ForwardRefRenderFunction =
        (props, ref) => 
    Hoopla
    const MyComponent = React.forwardRef(MyComponentRenderFn); const myRef = React.createRef();

提交回复
热议问题