首先参考官方文档
https://www.electronjs.org/zh/docs/latest/api/session#sesclearcache
具体示例代码:
const clearObj = {
storages: ['appcache', 'filesystem', 'localstorage', 'shadercache', 'websql', 'serviceworkers', 'cachestorage'],
};
//在主进程里面调用示例代码
if (mainWindow) {
mainWindow.webContents.session.clearStorageData(clearObj);
}