Electron:解決HTML 頁面中的「require() 未定義」問題
開發Electron 應用程式時,將Node.js 功能合併到HTML 頁面可能會導致令人困惑的錯誤「require() 未定義」。出現這種情況是因為 Electron 在其後續版本中預設設定發生了變化。
要解決此問題,使用者需要在建立瀏覽器視窗時明確啟用 nodeIntegration。這允許 HTML 頁面存取所需的 Node.js 模組和全域物件。以下是範例:
<code class="javascript">// Enable nodeIntegration and disable contextIsolation in BrowserWindow app.on('ready', () => { mainWindow = new BrowserWindow({ webPreferences: { nodeIntegration: true, contextIsolation: false, } }); });</code>
啟用此設定後,可以在HTML 頁面中無縫使用下列變數:
<code class="javascript">var app = require('electron').remote; var dialog = app.dialog; var fs = require('fs');</code>
透過啟用nodeIntegration,Electron 授予HTML 頁面存取權限Node .js 環境,讓使用者在整個應用程式介面中利用其功能和物件。
以上是為什麼我的 Electron 應用程式在 HTML 頁面中拋出「require() 未定義」錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!