electron 建立和移动后的电子JS路径问题

axr492tv  于 2022-12-08  发布在  Electron
关注(0)|答案(1)|浏览(189)

我用Electron构建我的项目。它在Nodejs上运行。我用Electron-Packager编译这个项目。它运行了,但是当我移动编译的文件夹时,项目不会运行,我得到了一些路径错误。

export function getSafeWPPath(): string {
     let home = app.getPath('home');
     home = path.resolve(home, ".SafeWP");
     if (!fs.existsSync(home)) {
         fs.mkdirSync(home);
     }
     return home;
 }

我得到

Uncaught Exception:
TypeError: Cannot read property 'resolve' of undefined
   at getSafeWPPath

enter image description here

eyh26e7m

eyh26e7m1#

这是因为它找不到路径模块。请确保您已经将“路径”添加到依赖项而不是dev依赖项。

相关问题