React DnDReact DnD
  • 开始
  • 指南
⌘ K
主题
概述
教程
测试
FAQ
故障排除
组件
DndProvider
DragPreviewImage
Hooks
概述
useDrag
useDrop
useDragLayer
useDragDropManager
监控状态
DragSourceMonitor
DropTargetMonitor
DragLayerMonitor
后端
HTML5
后台
触摸
测试
最后更新时间:
帮助改进此文档
Made with ❤️ by Eric
‌
‌
‌
‌

useDragDropManager

此钩子可让用户访问 DnD 系统。DragDropManager 实例是 React DnD 创建的一个单例,它包含对状态、监控器、后台等的访问。

import { useDragDropManager } from 'react-dnd'
function Example() {
// The manager provides access to all of React DnD's internals
const dragDropManager = useDragDropManager()
return <div>Example</div>
}