Electron 通信

1、web向主进程发送消息 (单项)

使用ipcMain.on 监听事件

const hanle = (event, data) => {
    console.log(event)
    console.log(data)
}

ipcMain.on('close', handle)

使用 ipcRenderer.send 发送

ipcRenderer.send('close', {msg: ''})

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章