本文介绍了电子:将消息从BrowserWindow发送到电子应用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个Electron应用程序,它使用 BrowserWindow
来显示Web应用程序.
I have an Electron app which uses a BrowserWindow
to display a web app.
我希望能够从angularjs Web应用程序向Electron应用程序发送消息.
I want to be able to send a message from the angularjs web app to the Electron app.
我有这样的想法:
//web app
window.notify('message','hello');
//Electron app
window.on('message',function(e){
console.log(e.text);
};
这有可能吗?
推荐答案
您可以使用 ipcMain 和 ipcRenderer 在主脚本之间发送消息和客户端脚本.
You can use ipcMain and ipcRenderer for sending messages between the main script and the client script.
这篇关于电子:将消息从BrowserWindow发送到电子应用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!