我设置了一些SingeList组件来过滤搜索结果,我希望这样做,以便在取消选择第一个SingleList值时,也取消选择其他SingleLists的值。
<SingleList
componentId="singleModel"
dataField="model.keyword"
showSearch={false}
title="Models"
react={{
and: ["singleManufacturer"]
}}
URLParams={true}
<SingleList />
<SingleList
componentId="singleVariant"
dataField="badge.keyword"
showSearch={false}
title="Variants"
react={{
and: ["singleModel"]
}}
URLParams={true}
/>
我尝试阅读文档以寻找特定方法,并尝试在另一个SelectedList项目上触发click事件以取消选择该项目。