Cookies 在哪里放置电子饼干?

Cookies 在哪里放置电子饼干?,cookies,electron,Cookies,Electron,它基本上说:在应用程序的渲染器代码中,只需要这个包 我不知道放在哪里。当我把它放到main.js中时,我的应用程序就再也不能启动了。我正确安装了它,因为它位于我的node_modules文件夹中。有什么想法吗 My main.js: 'use strict'; const electron = require('electron'); // Module to control application life. const app = electron.app; // Module to cr

它基本上说:在应用程序的渲染器代码中,只需要这个包

我不知道放在哪里。当我把它放到main.js中时,我的应用程序就再也不能启动了。我正确安装了它,因为它位于我的node_modules文件夹中。有什么想法吗

My 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();
  }
});

如前所述->此main.js不起作用,因为
require('electron-cookies')

首先,您需要了解浏览器进程和渲染器进程之间的区别,阅读electron,对electron的简要概述应该会有所帮助

现在,
main.js
在浏览器进程中运行,
index.html
在呈现程序进程中运行,因此要使用
electron cookies
,您必须直接或间接地将其加载到
index.html
中。直接办法是:

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

要求(“电子cookie”);