Here它基本上说:在你的app的渲染器代码中,只需要这个包....
我不知道放在哪里。当我把它放在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')
答案 0 :(得分:8)
首先,您需要了解浏览器流程与渲染器流程之间的区别,阅读电子Quick Start,以及电子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>