- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在附加到 html 文件的 js 文件中使用 require 指令。但是,我收到该文件的要求未定义的错误消息。我的理解是在 5.0 之后的较新版本的 Electron 中,默认情况下禁用了 nodeIntegration。但是,即使在 Web 首选项中启用 nodeIntegration 后,我仍然收到需要错误消息。我的理解是这个 nodeIntegration 应该可以解决这个问题。为什么我仍然遇到 require 未定义的问题?这是 main.js 文件的相关部分。
编辑:我在 preload 和 nodeIntegration 之间缺少一个逗号,所以感谢指出这一点的人!但是,我仍然遇到这个问题。仍然收到“未捕获的 ReferenceError:需要未定义”。
第二次编辑:这是该问题的最小再现。即使将 nodeIntegration 设置为覆盖它, require 函数也未定义。最后,我只是尝试从本地 json 文件中读取数据,但是在使用 Electron 时,我能找到的每个实例都以一种简单的方式进行读取,无论是需要 fs 还是需要文件,都以某种方式使用了 require。如果 require 语句根本不起作用,我将无法进行任何工作。
主要.js:
// Modules to control application life and create native browser window
const {app, BrowserWindow} = require('electron')
const path = require('path')
// 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 () {
// Create the browser window.
mainWindow = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
preload: path.join(__dirname, 'preload.js'),
nodeIntegration:true
}
})
// and load the index.html of the app.
mainWindow.loadFile('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.
// Some APIs can only be used after this event occurs.
app.on('ready', createWindow)
// Quit when all windows are closed.
app.on('window-all-closed', function () {
// On macOS 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 macOS 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()
})
// In this file you can include the rest of your app's specific main process
// code. You can also put them in separate files and require them here.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<link href="main.css" rel="stylesheet">
<title>Destiny Guide</title>
<script src="problem.js"></script>
</head>
<body>
<h1>Hello World</h1>
Hello World
<br>
<h1><a href = "HelloWorld">helloWorld</a><h1>
<!-- You can also require other files to run in this process -->
<script src="./renderer.js"></script>
</body>
</html>
var dataArc = require("./ZeroHourArc.json");
最佳答案
只需尝试添加 contextIsolation: false
像这样:
mainWindow = new BrowserWindow({
width: 500,
height: 500,
icon: './public/logo.png',
backgroundColor: 'white',
webPreferences: {nodeIntegration: true, contextIsolation: false}
});
关于electron - nodeIntegration 真的被忽略了吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59523682/
我正在尝试在附加到 html 文件的 js 文件中使用 require 指令。但是,我收到该文件的要求未定义的错误消息。我的理解是在 5.0 之后的较新版本的 Electron 中,默认情况下禁用了
在博客发布后的 repo 之后,我花了大约一个小时来阅读要点,但似乎无法弄清楚该如何做。 我有一个BrowserWindow实例,它使用nodeIntegration: false加载一个URL(由我
因此,我遵循了一些指南来设置 Webpack、Electron 和 React 来制作桌面应用程序。完成设置后,我开始工作,了解到我需要从 main 和 renderer 请求 IPC 机制才能进行通
我正在尝试使用自定义 Electron 标题栏:https://github.com/AlexTorresSk/custom-electron-titlebar#readme .当我放入渲染器进程时:
在 Electron 的 docs它允许我们启用或禁用nodeIntegration(默认情况下禁用)。禁用后,它会禁用整个应用程序使用 Node.js 功能还是仅禁用某个进程(主进程、渲染器进程和自
在关闭 nodeIntegration 的情况下创建自定义窗口控件(如关闭、最小/最大和恢复)时,我被卡住了。我在渲染器的本地 html 文件中创建了按钮 main.js mainWindow = n
使用最新版本的Electron时出现此错误。我在主javascript文件中将nodeIntegration设置为true。我已经从工作的Electron应用程序中复制并粘贴了此代码,但是它似乎不适用
我正在关注 Electron Js 文档:https://electronjs.org/docs/tutorial/first-app 它在那里给出, let win = new BrowserW
我花了大约一个小时阅读一篇博文后的 repo 要点,但似乎无法弄清楚如何做到这一点。 我有一个 BrowserWindow 实例加载一个 URL(我控制),带有 nodeIntegration: fa
我在制作 Electron + Create React App 应用时遇到了一些问题。这是一个用于成本计算的离线应用程序,我需要保留一些用户设置,为此我使用了 https://github.com/
我是一名优秀的程序员,十分优秀!