在 Electron 中创建新浏览器 window 时将 node-integration 设置为 false 的结果是什么?

What's the outcome of setting node-integration to false when creating a new browser window in Electron?

为了让 jQuery 在我用 Electron(以前称为 Atom Shell)打开的 HTML 页面中正确加载和运行,我不得不在创建时禁用节点集成我的 main.js 文件中的 BrowserWindow

谁能告诉我什么设置 node-integration: false 会让我无法执行如果我没有禁用它通常可以执行的操作?

将节点集成设置为 false 将在渲染器进程中禁用 node.js - 即您的应用程序可以 执行网络浏览器将执行的操作。而不是这样做,使用 Zepto.js 与 Electron 兼容并且具有相同的 API.