**例子**
```
import React from "react";
const TargetComponet = React.forwardRef((props,ref ) =>(
<input type="text"
ref={ ref }
/>
));
export default class Comp extends React.Component{
constructor(props) {
super(props);
this.ref = React.createRef();
}
componentDidMount() {
this.ref.current.value = 'ref get input'
}
render() {
return <TargetComponet ref={this.ref} />
}
}
```
**源码**
~~~
import {REACT_FORWARD_REF_TYPE, REACT_MEMO_TYPE} from 'shared/ReactSymbols';
export default function forwardRef<Props, ElementType: React$ElementType>(
render: (props: Props, ref: React$Ref<ElementType>) => React$Node,
) {
return {
$$typeof: REACT_FORWARD_REF_TYPE,
render,
};
}
~~~
> 通过React.ReactElement创建的所有节点都是 REACT_ELEMENT_TYPE
- 说明
- react源码
- 问答
- 慕课网视频
- 第二章:基础知识
- 001.ReactElement
- 002.react-component
- 003.ref
- 004.forwardRef
- 005.context
- 006.concurrentMode
- 007.supense和lazy
- 008.hooks
- 009.children
- 010.memo
- 011.others
- 第三章:react的更新
- 001.react-dom-render
- 第四章:Fiber Scheduler
- 第五章:各类组件的Update
- 第六章:完成节点任务
- 第七章:commitRoot
- 第八章:功能详解:基础
- 第九章:suspense and priority
- 第十章:功能详解:Hooks
- 001.基础知识
- 002.hook
- 003.RootFiber
- 004. hydrate
- react
- 高阶组件
- react基础
- Github面试题目