我为圆形 svg 上的动画创建了一个参考:
const circleRef = useRef(null);
在 a 中useEffect
,我有这行代码会产生错误:
circleRef.current!.setNativeProps({
strokeDashoffset,
});
这是产生的错误消息:
Property 'setNativeProps' does not exist on type 'never'.
关于为什么会发生这种情况的任何想法?对我来说似乎是打字错误,但我可能是错的