我有这个代码:
<Dropdown
selectedKey={someKeyInState}
onChange={(e,option) => {
// check if the dropdown should be updated
if(someCondition){
// update selected key
}
else {
// don't update selected key
}
}}
options={someOptions}
/>
如果满足某个条件,我想阻止更新选定的密钥。
但是,Dropdown 直观地显示了我单击的选项。
如何防止这种行为?