我的应用程序是电子,BrowserWindow加载本地页面 index.html。
我调用npm run start一个脚本来运行electron main.js,应用程序打开并加载 html。
我可以向脚本添加一个参数来将不同的 html 文件加载到BrowserWindow.
在 main.js 文件中,代码是:
function createWindow () {
// Create the browser window.
mainWindow = new BrowserWindow({
webPreferences:{
webSecurity:false
},
fullscreen : false });//, alwaysOnTop : true , kiosk : true })
mainWindow.setMenu(null);
// and load the index.html of the app.
let url = `file://${__dirname}/index.html`; \\ index.html should be determined by argument passed at start.
mainWindow.loadURL(url,loadOptions);
// Open the DevTools.
mainWindow.webContents.openDevTools();
// Emitted …Run Code Online (Sandbox Code Playgroud)