electron 电子 NodeJS Ag-Grid无法导入

vdzxcuhz  于 2022-12-16  发布在  Electron
关注(0)|答案(1)|浏览(151)

在render.js中,我有

import { Grid } from 'ag-grid-community';
import { tableMethods } from './table.js';

我创建了自己的自定义表方法,并决定尝试ag-grid,因为我的方法没有他们的快(这并不奇怪)。

<script type="module" src="render.js"></script>

我无法加载ag-grid,出现此错误

Uncaught TypeError: Failed to resolve module specifier "ag-grid-community". Relative references must start with either "/", "./", or "../".

我用了npm i ag-grid-community -D来安装它,我不确定我是否需要-D,所以我尝试不使用它,它仍然显示相同的错误。

  • 注意-当然我已经尝试过按照错误消息所述的去做了。但是它没有解决,文档中也没有提到任何关于这个问题的内容。
ubof19bj

ubof19bj1#

我可以通过在render.js文件之前添加以下内容来实现此功能

<script src="ag-grid-community.js"></script>

我还禁用了type=module,因为我意识到这可能是拆分呈现脚本的预期方式,或者至少是我的猜测。

相关问题