我试图弄清楚我需要如何使用React.createRef()
typescript 来反应本机,因为以下代码会引发错误
// ...
circleRef = React.createRef();
componentDidMount() {
this.circleRef.current.setNativeProps({
someProperty: someValue
});
}
// ...
当前引发以下错误this.circleRef.current.setNativeprops
[ts] 对象可能为“空”。(属性)React.RefObject<{}>.current: {} | 无效的
和
[ts] 类型“{}”上不存在属性“setNativeProps”。任何
有任何想法吗?