Electron app load external URL on application closePHP Logout Script with 4 frames in framesetOpen external file with ElectronUsing console.log() in Electron appDetect multiple tabs or windows of the same session in a web applicationPHP header(Location:'index.php') and javascript not being executedLoad Electron application from URLCannot read property on of undefined. Electron BrowserWindow objecthow to make a conditional ajax call triggered by onbeforeload based on a variable's valueAngular / Electron using the renderer.js with angular componentsLoading div from external site in Electron app

Check if three arrays contains the same element

Why can I traceroute to this IP address, but not ping?

Why did Sanhedrin deal with who has a share in Olam Habah?

Is it possible to fly backward if you have 'really strong' headwind?

Why was this person allowed to become Grand Maester?

How to handle (one's own) self-harm scars (on the arm), in a work environment?

You have (3^2 + 2^3 + 2^2) Guesses Left. Figure out the Last one

Thread Pool C++ Implementation

Why is a common reference string needed in zero knowledge proofs?

Is it possible to have a wealthy country without a middle class?

How to use memset in c++?

Why does Sin[b-a] simplify to -Sin[a-b]?

New pedal fell off maybe 50 miles after installation. Should I replace the entire crank, just the arm, or repair the thread?

Is using 'echo' to display attacker-controlled data on the terminal dangerous?

Russian word for a male zebra

A map of non-pathological topology?

Why didn't Voldemort recognize that Dumbledore was affected by his curse?

If I leave the US through an airport, do I have to return through the same airport?

English word for "product of tinkering"

What to do when surprise and a high initiative roll conflict with the narrative?

What ways have you found to get edits from non-LaTeX users?

Writing an augmented sixth chord on the flattened supertonic

What is the color of artificial intelligence?

Why we don’t make use of the t-distribution for constructing a confidence interval for a proportion?



Electron app load external URL on application close


PHP Logout Script with 4 frames in framesetOpen external file with ElectronUsing console.log() in Electron appDetect multiple tabs or windows of the same session in a web applicationPHP header(Location:'index.php') and javascript not being executedLoad Electron application from URLCannot read property on of undefined. Electron BrowserWindow objecthow to make a conditional ajax call triggered by onbeforeload based on a variable's valueAngular / Electron using the renderer.js with angular componentsLoading div from external site in Electron app






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















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();
);
);









share|improve this question

















  • 1





    Doesn't make sense. It's like saying ... when I close my browser go to a different web site. Perhaps all you need is to make an a ajax request?

    – charlietfl
    Mar 24 at 19:04












  • Well, the idea is closing the browser window first, than trigger the URL to log out and that to close the app. Thought that with simple link visit will be easier than ajax request. And with Ajax might face problems with cors cross domain.

    – John Siniger
    Mar 24 at 19:27

















0















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();
);
);









share|improve this question

















  • 1





    Doesn't make sense. It's like saying ... when I close my browser go to a different web site. Perhaps all you need is to make an a ajax request?

    – charlietfl
    Mar 24 at 19:04












  • Well, the idea is closing the browser window first, than trigger the URL to log out and that to close the app. Thought that with simple link visit will be easier than ajax request. And with Ajax might face problems with cors cross domain.

    – John Siniger
    Mar 24 at 19:27













0












0








0








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();
);
);









share|improve this question














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 electron






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 24 at 18:59









John SinigerJohn Siniger

5371926




5371926







  • 1





    Doesn't make sense. It's like saying ... when I close my browser go to a different web site. Perhaps all you need is to make an a ajax request?

    – charlietfl
    Mar 24 at 19:04












  • Well, the idea is closing the browser window first, than trigger the URL to log out and that to close the app. Thought that with simple link visit will be easier than ajax request. And with Ajax might face problems with cors cross domain.

    – John Siniger
    Mar 24 at 19:27












  • 1





    Doesn't make sense. It's like saying ... when I close my browser go to a different web site. Perhaps all you need is to make an a ajax request?

    – charlietfl
    Mar 24 at 19:04












  • Well, the idea is closing the browser window first, than trigger the URL to log out and that to close the app. Thought that with simple link visit will be easier than ajax request. And with Ajax might face problems with cors cross domain.

    – John Siniger
    Mar 24 at 19:27







1




1





Doesn't make sense. It's like saying ... when I close my browser go to a different web site. Perhaps all you need is to make an a ajax request?

– charlietfl
Mar 24 at 19:04






Doesn't make sense. It's like saying ... when I close my browser go to a different web site. Perhaps all you need is to make an a ajax request?

– charlietfl
Mar 24 at 19:04














Well, the idea is closing the browser window first, than trigger the URL to log out and that to close the app. Thought that with simple link visit will be easier than ajax request. And with Ajax might face problems with cors cross domain.

– John Siniger
Mar 24 at 19:27





Well, the idea is closing the browser window first, than trigger the URL to log out and that to close the app. Thought that with simple link visit will be easier than ajax request. And with Ajax might face problems with cors cross domain.

– John Siniger
Mar 24 at 19:27












1 Answer
1






active

oldest

votes


















2














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();
);





share|improve this answer























  • This is exactly what I needed!

    – John Siniger
    Mar 25 at 12:08











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55327390%2felectron-app-load-external-url-on-application-close%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









2














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();
);





share|improve this answer























  • This is exactly what I needed!

    – John Siniger
    Mar 25 at 12:08















2














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();
);





share|improve this answer























  • This is exactly what I needed!

    – John Siniger
    Mar 25 at 12:08













2












2








2







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();
);





share|improve this answer













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();
);






share|improve this answer












share|improve this answer



share|improve this answer










answered Mar 25 at 0:13









pushkinpushkin

4,806123056




4,806123056












  • This is exactly what I needed!

    – John Siniger
    Mar 25 at 12:08

















  • This is exactly what I needed!

    – John Siniger
    Mar 25 at 12:08
















This is exactly what I needed!

– John Siniger
Mar 25 at 12:08





This is exactly what I needed!

– John Siniger
Mar 25 at 12:08



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55327390%2felectron-app-load-external-url-on-application-close%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현