我一直在使用Electron开发桌面应用程序。但是,我似乎无法让Redirect工作来分离HTML文件。以下是我目前的代码: -
if (inUserV.value = user_id || username) {
profileWindow = new BrowserWindow({width: 1200, height: 800, autoHideMenuBar: true, resizable: false});
add("Browser Window Created");
profileWindow.loadURL('file://' + __dirname + '/app/index.html');
add("");
profileWindow.show();
add(username + " " + user_id)
}