electron 返回上一个页面
时间: 2023-10-02 11:09:53 浏览: 342
恢复上一个页面的状态
可以使用 `window.history.back()` 方法来返回到上一个页面。这个方法会让浏览器回退到上一个历史记录中的页面。如果需要通过代码来触发这个方法,可以使用 Electron 的 `webContents` 模块提供的 `goBack()` 方法,例如:
```javascript
const { webContents } = require('electron');
// 获取当前窗口的 WebContents 对象
const currentWebContents = webContents.fromId(win.webContents.id);
// 返回上一个页面
currentWebContents.goBack();
```
其中 `win` 是指当前的窗口对象。
阅读全文