作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
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/
我是一名优秀的程序员,十分优秀!