【问题标题】:react-data-grid-addons: TypeError: Cannot read property 'Component' of undefinedreact-data-grid-addons:TypeError:无法读取未定义的属性“组件”
【发布时间】:2017-11-06 03:37:04
【问题描述】:

我正在使用 react-data-grid-addons 和 react。当我在安装后运行我的项目时,我在 react-data-grid-addons.js 中得到一个错误和其他一些错误

TypeError:无法读取未定义的属性“组件”

(function(module, exports, __webpack_require__) {

'use strict';

exports.__esModule = true;
exports.SimpleRowsContainer = undefined;

var _react = __webpack_require__(2);

var _react2 = _interopRequireDefault(_react);

var _propTypes = __webpack_require__(3);

var _propTypes2 = _interopRequireDefault(_propTypes);

function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }

function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }

function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }

function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }

...

  return RowsContainer;
}(_react2['default'].Component); // Error on this line.

如何解决这个问题?

【问题讨论】:

    标签: reactjs webpack react-data-grid


    【解决方案1】:

    构建无法找到您可能忘记在代码中导入的组件。以下代码必须修复相同的问题。

    从“反应”中导入 {Component}

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2023-04-08
      • 1970-01-01
      • 1970-01-01
      • 2021-10-15
      • 1970-01-01
      • 2018-01-25
      • 2021-11-24
      相关资源
      最近更新 更多