设法解决问题: 而不是:
<Droppable droppableId={section.id} type="task">
我做到了:
<Droppable droppableId={`task|${section.id}`}>
然后,我可以使用以下类型:
const type = result.droppableId.split('|')[0]