首先參考官方文檔
https://www.electronjs.org/zh/docs/latest/api/session#sesclearcache
具體示例代碼:
const clearObj = {
storages: ['appcache', 'filesystem', 'localstorage', 'shadercache', 'websql', 'serviceworkers', 'cachestorage'],
};
//在主進(jìn)程里面調(diào)用示例代碼
if (mainWindow) {
mainWindow.webContents.session.clearStorageData(clearObj);
}