Electron BrowserWindow 跨域问题如何解决?
2023-09-14 本文已影响0人
buhanzhe
BrowserWindow远程打开在线url,无法调用本地127.0.0.1的接口。原来是跨域问题。
我的electron版本
"electron": "^21.4.4"
一行代码解决!
const { app} = require('electron')
app.commandLine.appendSwitch('disable-web-security');