我正在使用远程网址创建electron BrowserWindow
,因此我无法使用var ipc = require('ipc');
语法来包含ipc。可以将消息从远程URL发送到电子主进程吗?如果是这样,我在哪里可以获得它的javascript源?
或许有更好的方法将信息传递给电子主进程?只需要发送登录的用户信息。
答案 0 :(得分:1)
这个问题已经有一段时间问了,但我认为这可能仍然有用。将Javascript注入浏览器窗口的方式是使用预加载滞后,在Web首选项中,添加以下选项:
const window = new BrowserWindow({
webPreferences:{
preload: <path_to>/preload.js
}
})
// preload.js
const ipcRenderer = require('electron').ipcRenderer;
window.ipcRenderer = ipcRenderer
在您正在加载的外部URL的网页中,您可以直接使用window.ipcRenderer
。
答案 1 :(得分:0)
我相信我解决了它。使用角度,所以我做了一个工厂,但相同的try / catch方法应该适用于任何事情。如果从电子运行,则发送ipc消息,否则忽略它们。
angular.module('IpcFactory', [])
.factory('IpcFactory', function(){
var ipcAvailable;
try{
var ipc = require('ipc');
ipcAvailable = true;
}
catch(e){
ipcAvailable = false;
}
return {
ipcAvailable: ipcAvailable,
send: function(event, message){
var self = this;
if(self.ipcAvailable){
ipc.send(event, message);
}
},
on: function(event, fn){
var self = this;
if(self.ipcAvailable){
ipc.on(event, fn());
}
}
};
});
答案 2 :(得分:0)
如果发现在 webPreferences 中将 nodeIntegration设置为true 可以解决此问题,并允许“需要” ipc模块并在其上调用发送
main.js
var authWindow = new BrowserWindow({
width: 450,
height: 300,
show: false,
parent: mainWindow,
modal: true,
webPreferences:{
nodeIntegration: true
}
});
请注意设置此项的安全隐患,因为您可能正在执行未知来源的脚本
https://electronjs.org/docs/tutorial/security#2-do-not-enable-nodejs-integration-for-remote-content