admin管理员组文章数量:1339794
I currently have elements in an Electron app of mine, that when clicking on them loads a url. However it is not possible to go to the previous (local) page.
Is there any way to add a layered back button on top of the external url which will load the previous page?
I currently have elements in an Electron app of mine, that when clicking on them loads a url. However it is not possible to go to the previous (local) page.
Is there any way to add a layered back button on top of the external url which will load the previous page?
Share Improve this question asked Nov 6, 2019 at 22:33 Thanos TaprasThanos Tapras 1432 silver badges7 bronze badges2 Answers
Reset to default 8I haven't had a need to use it but there are navigation functions in the webContent instances:
contents.clearHistory()
Clears the navigation history.
contents.goBack()
Makes the browser go back a web page.
contents.goForward()
Makes the browser go forward a web page.
And so forth. So it looks like you can do what you want.
Here In your Page wherever Don't forget to
const electron = window.require('electron');
const { ipcRenderer } = electron;
App.js (or any page)
const goBack = async () => {
// Async message sender
ipcRenderer.send('goBackHomeBoi', 'Send Me Data Please')
// Async message handler
ipcRenderer.on('WentBack', (event, data) => {
console.log(data)
})
}
then you can have button on the page whose onClick
binds to this funtion.
main.js (electron main)
// Event handler for asynchronous ining messages
ipcMain.on('goBackHomeBoi', async (event, arg) => {
win.webContents.goBack()
event.sender.send('WentBack', 'Done')
})
本文标签: javascriptAdd back button when loading url in ElectronStack Overflow
版权声明:本文标题:javascript - Add back button when loading url in Electron - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743601661a2508679.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论