1.关于不能在函数组件上使用 ref 属性的问题
Function components cannot be given refs. Attempts to access this ref will fail. Did you mean to use React.forwardRef()
官方方案:如果要在函数组件中使用 ref
,你可以使用 forwardRef
(可与 useImperativeHandle
结合使用),或者可以将该组件转化为 class 组件。
2022-09-28 11:56:31
1.关于不能在函数组件上使用 ref 属性的问题
Function components cannot be given refs. Attempts to access this ref will fail. Did you mean to use React.forwardRef()
官方方案:如果要在函数组件中使用 ref
,你可以使用 forwardRef
(可与 useImperativeHandle
结合使用),或者可以将该组件转化为 class 组件。