我有一个要以编程方式单击的按钮:
<TouchableOpacity ref={ref}>
<Text>Hello</Text>
</TouchableOpacity>
这是我用来触发上面按钮的按钮:
<SubscribeButton onPress={handleNext}>
<SubscribeText>Subscribe</SubscribeText>
</SubscribeButton>
这是我的 onPress 函数:
const ref = useRef();
const handleNext = () => {
ref.current.click();
};
我不断收到错误消息:undefined is not an object (evaluating 'ref.current.click')
知道发生了什么吗?