在react-dnd中找不到DragSource

发布于 2025-01-14 05:05:03 字数 1225 浏览 1 评论 0原文

我正在学习 React 中的拖放操作,但我不断收到此错误(参见图片),即 React-dnd 中不存在 DragSource。我已经使用“npm install react-dnd”安装了react-dnd。在我所做的研究中,我还没有看到这个错误的任何答案。

node_modules 中的 React-dnd 包

在此处输入图像描述

代码如下:


import React, {Component} from 'react'
import {DragSource} from 'react-dnd'

const itemSource = {
    beginDrag(props) {
        return props.item
    },
    endDrag(props, monitor, component) {
        return props.handleDrop(props.item.id)
    }
}

function collect(connect, monitor) {
    return {
        connectDragSource: connect.dragSource(),
        connectDragPreview: connect.dragPreview(),
        isDragging: monitor.isDragging()
    }
}

class Item extends Component {
    render() {
        
const { isDragging, connectDragSource, item } = this.props;
        return connectDragSource(
            <div className='item'>
                <span>{item.name}</span> 
            </div> 
        )
    }
}

export default DragSource('item', itemSource, collect)(Item)

I'm learning about drag and drop in react, but I keep getting this error (see image) that DragSource doesn't exist in react-dnd. I have installed react-dnd using "npm install react-dnd". I haven't seen any answer to this bug in my of the research I did.

react-dnd package in node_modules

enter image description here

Code below:


import React, {Component} from 'react'
import {DragSource} from 'react-dnd'

const itemSource = {
    beginDrag(props) {
        return props.item
    },
    endDrag(props, monitor, component) {
        return props.handleDrop(props.item.id)
    }
}

function collect(connect, monitor) {
    return {
        connectDragSource: connect.dragSource(),
        connectDragPreview: connect.dragPreview(),
        isDragging: monitor.isDragging()
    }
}

class Item extends Component {
    render() {
        
const { isDragging, connectDragSource, item } = this.props;
        return connectDragSource(
            <div className='item'>
                <span>{item.name}</span> 
            </div> 
        )
    }
}

export default DragSource('item', itemSource, collect)(Item)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

假面具 2025-01-21 05:05:03

根据react-dnd release v15.0.0

装饰器 API 已被删除并完全被 Hooks 取代
API

装饰器 API 包括 DragSource 和 DropTarget。
它们可以被react-dnd 中的useDrag 和useDrop 钩子替换。

According to react-dnd release v15.0.0

The Decorators API has been removed and fully replaced by the Hooks
API

The Decorators API included DragSource and DropTarget.
They can be replaced by useDrag and useDrop hooks from react-dnd.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文