gpt4 book ai didi

javascript - Electron 类型错误: Cannot read property 'normalizePath' of undefined

转载 作者:太空宇宙 更新时间:2023-11-04 03:00:36 24 4
gpt4 key购买 nike

我正在使用 Electron 构建一个简单的应用程序。我想访问 Node.js fspath 但我不知道正确的方法。

这是错误:

Exception has occurred: TypeError

TypeError: Cannot read property 'normalizePath' of undefined

以下是我在 main 进程(不是 renderer)中使用的代码示例:

const { path } = require("path");

const something = () => {
// Normalize the folder path
path.normalize("path/to/file.txt");
});

something();

我已阅读此线程 ( https://github.com/electron/electron/issues/7300#issuecomment-248773783 ) 并尝试应用修复程序,但它没有帮助并抛出另一个错误,所以我重新开始。

如果您能提供一些有关如何使其正常工作的提示,我会很高兴。

最佳答案

路径是从路径模块默认导出的,所以你的要求

const { path } = require("path");

应该是

const path = require('path');

应该是path.normalize()

关于javascript - Electron 类型错误: Cannot read property 'normalizePath' of undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57646633/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com