gpt4 book ai didi

node.js - Electron渲染进程找不到 'electron-cookies'模块

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

我有一个网站,我正在尝试使用 Electron 将其作为桌面应用程序运行。除了 cookie 之外,一切都正常。当用户返回网站时,我使用护照来识别他们。我正在尝试使用 Electron cookies模块。

我已经使用 npm install --save electro-cookies 安装了该模块。模块文件存在于 node_modules 文件夹中,并且该模块在 package.json 中列为依赖项。我知道该模块需要包含在渲染进程中,而不是主进程中。我可能误解了渲染过程的含义。我认为这意味着在前端运行的代码,其中包括 html 文档中包含的脚本。

在我的网站提供的 html 文件中,在包含所有 javascript 文件之前,我有以下代码:

<script>
if(module) {
require('electron-cookies');
}
</script>

我检查模块是否存在,以便代码将在 Electron 中运行,而不是在网络浏览器中运行。

Electron 调试工具给出以下错误:

Uncaught Error: Cannot find module 'electron-cookies'

我还应该注意,我正在使用 loadURL 在 Electron 中加载网页。这会影响在项目中加载 Node 模块吗?

mainWindow = new BrowserWindow();
mainWindow.loadURL(`http://localhost:8080`);

最佳答案

您可以使用native Electron Cookies interface 。您尝试加载的 electro-cookies 第三方库似乎有点过时,并且可能不再适用于当前版本的 Electron。

关于node.js - Electron渲染进程找不到 'electron-cookies'模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37872239/

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