提交表单后自动刷新页面 - ElectronJS

Auto refresh page after submit form - ElectronJS

我正在寻找一种在提交表单后自动刷新 window 的方法。 我试过使用
window.on("closed", () => { window2.reload(); })
但它什么也没做。 我怎样才能在每次提交表单时重新加载我的页面? 我的代码:

这是我发现的:

Javascript:

function AutoRefresh( t ) {
           setTimeout("location.reload(true);", t);
        }

HTML:

<body onload = "JavaScript:AutoRefresh(5000);">
<p>This page will refresh every 5 seconds.</p>