在使用Handsontable与jQuery和React时,我遇到了一些错误。我正在追赶
TypeError: t.addEventListener is not a function
在控制台中我得到了:
Uncaught TypeError: Cannot read property 'offsetLeft' of undefined
由onMouseMove抛出。
我正在设置这样的动手:
import Handsontable from 'handsontable/dist/handsontable.full';
const $ = require('jquery');
function createTable(data){
const container = $(myContainer);
const hotContainer = container.find('.myTable');
console.log(hotContainer);
const datatable = Handsontable(hotContainer, {
colHeaders: true,
});
datatable.loadData(data.records);
}
module.exports = createTable;
console.log(hotContainer)返回Object,因此它存在。
关于我可能做错什么或不做的任何想法?