只是想知道Electron应用程序是否需要路由器。
由于应用程序的URL未在Electron应用程序中显示/公开,因此我认为不需要路由器。特别是因为您无法访问"重新加载"按钮。
您对此事有何看法?
答案 0 :(得分:2)
好吧,你可以重新加载,回去继续前进甚至在Electron的清洁历史。和路由可能可以帮助您像网页一样组织您的工作。
var electron = require('electron');
var window = electron.remote.getCurrentWindow();
window.reload();
window.webContents.goBack();
window.webContents.goForward();
window.webContents.clearHistory();
有关详细信息,请参阅此处:WebContents