标签: next.js
我正在尝试在下一个js页面索引中检测关闭标签或窗口
我已经使用了这段代码
componentDidMount(){ if (process.browser) { window.addEventListener("beforeunload", this.handleLeavePage); } }
有没有一种方法可以检测关闭的窗口或选项卡而不更改路线点击...?
预先感谢