我正在尝试使用React来获得具有FixedHeader [1]的数据表。当前,我已经创建了一个数据表,但是当我包含固定的标头依赖项时它失败。我按照以下步骤创建了数据表-https://medium.com/@zbzzn/integrating-react-and-datatables-not-as-hard-as-advertised-f3364f395dfa
这工作得很好,但是添加fixedheader是我遇到问题的地方。我使用npm包括了固定的标头依赖性:
npm install datatables.net-fixedheader --save
我更新了应用程序,以通过以下方式导入固定的标头依赖项:
const $ = require('jquery');
$.DataTable = require('datatables.net');
require( 'datatables.net-fixedheader' )(window, $);
但是,应用程序无法在控制台中启动并出现错误:
Uncaught FixedHeader must be initialised with the 'new' keyword.
有人看到此错误或可以指向正确的方向吗?