找不到React-dnd模块

时间:2018-02-13 07:54:03

标签: reactjs

我是新人的反应..遵循这个tutorial我有 成功推出新的App。

同时安装:

npm install --save react-dnd
npm install --save react-dnd-html5-backend

当我包含此tutorial

中的文件时
import PropTypes from 'prop-types';
import { DragSource } from 'react-dnd';
import { ItemTypes } from './Constants';

给我错误:

./src/App.js
Module not found: Can't resolve './Constants' in 'C:\...\...\...\Apps\draggable\src'

我做错了什么?

1 个答案:

答案 0 :(得分:2)

您的Constants文件存在问题。您当前目录中没有任何Constants.js。再次浏览链接,找到Constants.js创建

当时,我找到了一些解决方法:

  

尝试在当前目录中创建Constants.js

然后像这样在该目录中添加一个常量:

export const ItemTypes = {
  KNIGHT: 'knight'
};

并保存该文件。请浏览此链接以获取更多信息。 http://react-dnd.github.io/react-dnd/docs-tutorial.html