gpt4 book ai didi

cookies - Electron 曲奇在哪里放置?

转载 作者:行者123 更新时间:2023-12-03 12:29:55 25 4
gpt4 key购买 nike

Here基本上说:在您应用的渲染器代码中,只需要此包即可。

我不知道在哪里放置它。当我将它放在main.js中时,我的应用程序将无法启动。我已经正确安装了它,因为它位于我的node_modules文件夹中。有任何想法吗?

我的main.js:

'use strict';

const electron = require('electron');
// Module to control application life.
const app = electron.app;
// Module to create native browser window.
const BrowserWindow = electron.BrowserWindow;

// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
let mainWindow;

function createWindow () {

require('electron-cookies');
// Create the browser window.
mainWindow = new BrowserWindow({width: 800, height: 600,nodeIntegration:false});

// and load the index.html of the app.
mainWindow.loadURL('file://' + __dirname + '/index.html');

// Open the DevTools.
mainWindow.webContents.openDevTools();

// Emitted when the window is closed.
mainWindow.on('closed', function() {
// Dereference the window object, usually you would store windows
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
mainWindow = null;
});
}

// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
app.on('ready', createWindow);

// Quit when all windows are closed.
app.on('window-all-closed', function () {
// On OS X it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
app.quit();
}
});

app.on('activate', function () {
// On OS X it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (mainWindow === null) {
createWindow();
}
});

如前所述->由于 require('electron-cookies'),此main.js无法正常工作

最佳答案

首先,您需要了解浏览器进程与渲染器进程之间的区别,阅读Electron Quick Start,并且简要概述一下Electron architecture应该会有所帮助。

现在,main.js在浏览器进程中运行,index.html在渲染器进程中运行,因此要使用electron-cookies,您必须直接或间接在index.html中加载它。直接方法是:

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script>
require('electron-cookies');
</script>
</head>
<body>
</body>

关于cookies - Electron 曲奇在哪里放置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35431750/

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