电子曲奇在哪里放置? [英] Where to place electron-cookies?

查看:71
本文介绍了电子曲奇在哪里放置?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

Here it basically says: In your app's renderer code, just require this package....

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

I don't know where to place it. When i put it in main.js my app just won't start anymore. I installed it correctly since its in my node_modules folder. Any ideas?

我的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 快速入门,以及电子架构的简要概述

First you need to understand the difference between the browser process and the renderer process, reading the Electron Quick Start, and a brief overview of the Electron architecture should help.

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

Now, main.js runs in the browser process, index.html runs in the renderer process, so to use electron-cookies you have to load it either directly or indirectly in your index.html. The direct approach would be:

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

这篇关于电子曲奇在哪里放置?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆