ForwardRefExoticComponent
从这里得到的定义是
interface ExoticComponent<P = {}> {
/**
* **NOTE**: Exotic components are not callable.
*/
(props: P): (ReactElement|null);
readonly $$typeof: symbol;
}
interface NamedExoticComponent<P = {}> extends ExoticComponent<P> {
displayName?: string;
}
interface ForwardRefExoticComponent<P> extends NamedExoticComponent<P> {
defaultProps?: Partial<P>;
propTypes?: WeakValidationMap<P>;
}
如果你把它写出来,你会得到
interface ForwardRefExoticComponent<P> {
/**
* **NOTE**: Exotic components are not callable.
*/
(props: P): (ReactElement|null);
readonly $$typeof: symbol;
displayName?: string;
defaultProps?: Partial<P>;
propTypes?: WeakValidationMap<P>;
}
ForwardRefRender 函数
从这里得到的定义是
interface ForwardRefRenderFunction<T, P = {}> {
(props: PropsWithChildren<P>, ref: ((instance: T | null) => void) | MutableRefObject<T | null> | null): ReactElement | null;
displayName?: string;
// explicit rejected with `never` required due to
// https://github.com/microsoft/TypeScript/issues/36826
/**
* defaultProps are not supported on render functions
*/
defaultProps?: never;
/**
* propTypes are not supported on render functions
*/
propTypes?: never;
}
差异
ForwardRefRenderFunction
不支持propTypes
and defaultProps
,而支持ForwardRefExoticComponent
。
ForwardRefExoticComponent
有一个额外$$typeof
的类型成员symbol
- 的调用签名
ForwardRefRenderFunction
接受一个props
对象,该对象必须包含一个成员children
和一个 ref 对象作为参数,而 的调用签名ForwardRefExoticComponent
只接受一个任意形状的 props 对象作为参数。
还有一些想法
这两个定义的相互作用最好在函数的定义中forwardRef
看到:
function forwardRef<T, P = {}>(render: ForwardRefRenderFunction<T, P>): ForwardRefExoticComponent<PropsWithoutRef<P> & RefAttributes<T>>;
此外,这两个定义之间的一个很大区别似乎是,ForwardRefExoticComponent
(像所有外来组件一样)不是函数组件,而实际上只是对象,在渲染它们时会被特殊处理。因此评论
注意:Exotic 组件不可调用。
出于某种原因,在某些地方,那些奇异的组件是必要的。