我想在具有动态呈现元素的功能组件中使用 refs。
请帮助我使用 useRef Hook 创建动态 Refs 并在处理程序中访问。
1)需要创建3个useRefs指向3个按钮。
2)使用“ref1.value”或“ref2.value”等在按钮处理程序中访问它们
let abc=[1,2,3];
function submitclick(){
alert(123);
// Here i want to access the buttons with using the refs
}
return ( <div>
{ abc.map(function(index){ return (<button ref='123' onClick={submitclick}>{`Button${index}`}</button>)})}
</div>);
};
ReactDOM.render(<MyComponent name="doug" />, document.getElementById('root'));```