BrowserWindow远程打开在线url,无法调用本地127.0.0.1的接口。原来是跨域问题。
我的electron版本
"electron": "^21.4.4"
一行代码解决!
const { app} = require('electron')
app.commandLine.appendSwitch('disable-web-security');
BrowserWindow远程打开在线url,无法调用本地127.0.0.1的接口。原来是跨域问题。
我的electron版本
"electron": "^21.4.4"
一行代码解决!
const { app} = require('electron')
app.commandLine.appendSwitch('disable-web-security');
本文标题:Electron BrowserWindow 跨域问题如何解决?
本文链接:https://www.haomeiwen.com/subject/gxbgmdtx.html
网友评论