报错内容:
err---catch DOMException: Blocked a frame with origin "https://xxx.com" from accessing a cross-origin frame.
解决方案:在主进程文件中添加如下配置
//第一步
app.commandLine.appendSwitch("disable-site-isolation-trials");
//第二步
webPreferences:{
webSecurity: false//是否禁用同源策略
}
网友评论