in Education by
I am trying to load a log-out URL once the app close button is hit, Something like the following. Problem is that I am receiving an error that the window is already closed and can't load. Any help achieve this will be appreciated. app.on('ready', function () { // Create new window mainWindow = new BrowserWindow({webPreferences: { nodeIntegration: false }}); // Load php index into window mainWindow.setTitle('Test'); mainWindow.loadURL('http://www.url.com/index.php'); //mainWindow.webContents.openDevTools(); mainWindow.setMenu(null); mainWindow.on('closed', () => { mainWindow.loadURL('https://www.url.com/logout.php?logout=true'); mainWindow = null; app.quit(); }); }); JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
I'm a little confused by what you're trying to do, but it sounds like you can just load the URL when the close event is triggered, cancel the event to prevent closed from firing, and then when the page has loaded, you could close again, but this time for real. mainWindow.on('close', (e) => { mainWindow.webContents.on('did-finish-load', logOutPageLoaded); mainWindow.loadURL('https://www.url.com/logout.php?logout=true'); e.preventDefault(); }); function logOutPageLoaded() { mainWindow.destroy(); } mainWindow.on('closed', () => { mainWindow = null; app.quit(); });

Related questions

0 votes
    I am looking for a way to close a component when there it a click outisde of the element. I ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 19, 2022 in Education by JackTerrance
0 votes
    So, I am using Shopify for a clients eCommerce store and I'm creating a node js program that ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 14, 2022 in Education by JackTerrance
0 votes
    Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers. ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 12, 2022 in Education by JackTerrance
0 votes
    Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers. ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 12, 2022 in Education by JackTerrance
0 votes
    Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers. ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 12, 2022 in Education by JackTerrance
0 votes
    Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers. ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 10, 2022 in Education by JackTerrance
0 votes
    I am using the electron-quick-start app with a windows machine. I have added logging statements in the ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jul 26, 2022 in Education by JackTerrance
0 votes
    I am using the electron-quick-start app with a windows machine. I have added logging statements in the ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jul 20, 2022 in Education by JackTerrance
0 votes
    Angular js Image upload how to check width and height example my withd=200 and heidht =200 if give ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jul 20, 2022 in Education by JackTerrance
0 votes
    Course Results (${courseResponseList.getCourses().size()}) Want to show above div. jquery script. jQuery. ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 6, 2022 in Education by JackTerrance
0 votes
    Course Results (${courseResponseList.getCourses().size()}) Want to show above div. jquery script. jQuery. ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 20, 2022 in Education by JackTerrance
0 votes
    I am using Eclipse with Pydev and googleAppengine. I have python 2.7 installed. I am trying to run ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 19, 2022 in Education by JackTerrance
0 votes
    I have some divs like: next and the script in another page link.htm: Slide I want to load link. ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 28, 2022 in Education by JackTerrance
0 votes
    What is the ideal place to load the external JavaScript file in your HTML document 1. Towards the beginning of the ... of the webpage 3. Anywhere within the body is good enough...
asked Feb 23, 2021 in Technology by JackTerrance
0 votes
    What is the ideal place to load the external JavaScript file in your HTML document a)Towards the beginning of the body ... of the webpage c)Anywhere within the body is good enough...
asked Oct 8, 2020 in Technology by JackTerrance
...