web前端培訓分享Electron之IPC 通訊
本文由小千給大家分享Electron之IPC 通訊。
1、index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline'">
<title>Hello World!</title>
</head>
<body>
<h1>Hello World!</h1>
<button type="button" id="talk">Talk to main process</button><br>
<!-- All of the Node.js APIs are available in this renderer process. -->
We are using Node.js <strong><script>document.write( process.versions.node)</script></strong>,
and Electron <strong><script>document.write( process.versions.electron )</script></strong>.
<script>
// You can also require other files to run in this process
require('./renderer.js')
</script>
</body>
</html>
2、renderer.js
// This file is required by the index.html file and will
// be executed in the renderer process for that window.
// All of the Node.js APIs are available in this process.
const { ipcRenderer } = require('electron')
let i = 1
setInterval( () => {
console.log(i)
i++
}, 1000)
document.getElementById('talk').addEventListener('click', e => {
// ipcRenderer.send( 'channel1', 'Hello from main window')
let response = ipcRenderer.sendSync( 'sync-message', 'Waiting for response')
console.log(response)
})
ipcRenderer.on( 'channel1-response', (e, args) => {
console.log(args)
})
ipcRenderer.on( 'mailbox', (e, args) => {
console.log(args)
})
3、main.js
// Modules
const {app, BrowserWindow, ipcMain} = require('electron')
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
let mainWindow
// Create a new BrowserWindow when `app` is ready
function createWindow () {
mainWindow = new BrowserWindow({
width: 1000, height: 800, x: 100, y:140,
webPreferences: { nodeIntegration: true }
})
// Load index.html into the new BrowserWindow
mainWindow.loadFile('index.html')
// Open DevTools - Remove for PRODUCTION!
mainWindow.webContents.openDevTools();
mainWindow.webContents.on( 'did-finish-load', e => {
// mainWindow.webContents.send( 'mailbox', {
// from: 'Ray',
// email: 'ray@stackacademy.tv',
// priority: 1
// })
})
// Listen for window being closed
mainWindow.on('closed', () => {
mainWindow = null
})
}
ipcMain.on( 'sync-message', (e, args) => {
console.log(args)
setTimeout( () => {
e.returnValue = 'A sync response from the main process'
}, 4000)
})
ipcMain.on( 'channel1', (e, args) => {
console.log(args)
e.sender.send( 'channel1-response', 'Message received on "channel1". Thank you!')
})
// Electron `app` is ready
app.on('ready', createWindow)
// Quit when all windows are closed - (Not macOS - Darwin)
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') app.quit()
})
// When app icon is clicked and app is running, (macOS) recreate the BrowserWindow
app.on('activate', () => {
if (mainWindow === null) createWindow()
})
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31548651/viewspace-2777280/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- web前端技術分享Electron之IPC 通訊Web前端
- web前端培訓分享Electron之Main Process APIWeb前端AIAPI
- electron-ipc通訊效能分析
- Web前端培訓分享:Web前端到底是什麼?Web前端
- 長沙Web前端培訓分享:Web前端學習路線Web前端
- Web前端培訓分享:Web前端三大主流框架對比!Web前端框架
- web前端培訓分享:web前端的工作方向是什麼?Web前端
- web前端培訓分享node學習筆記Web前端筆記
- Web前端培訓分享:前端開源平臺介紹Web前端
- web前端技術分享Electron之Renderer Process APIWeb前端API
- Web前端培訓面試攻略Web前端面試
- web前端培訓哪家好?Web前端
- 好程式設計師web前端培訓分享HTMLCSS之寬高自適應程式設計師Web前端HTMLCSS
- 好程式設計師web前端培訓分享HTMLCSS學習之CSS基礎程式設計師Web前端HTMLCSS
- 好程式設計師web前端培訓分享HTMLCSS之HTML表單標籤程式設計師Web前端HTMLCSS
- 好程式設計師web前端培訓分享JavaScript框架J程式設計師Web前端JavaScript框架
- 好程式設計師web前端培訓分享Vue面試題程式設計師Web前端Vue面試題
- 好程式設計師web前端培訓分享學習JavaScript程式設計師Web前端JavaScript
- web前端培訓要學多久Web前端
- 好程式設計師web前端培訓分享JavaScript學習筆記之陣列程式設計師Web前端JavaScript筆記陣列
- 好程式設計師web前端培訓分享JavaScript學習筆記之正則程式設計師Web前端JavaScript筆記
- 好程式設計師web前端培訓分享JavaScript學習指南程式設計師Web前端JavaScript
- 好程式設計師Web前端培訓分享jQuery面試題梳理程式設計師Web前端jQuery面試題
- 好程式設計師web前端培訓分享HTML DOM節點程式設計師Web前端HTML
- 好程式設計師web前端培訓分享HTML DOM簡介程式設計師Web前端HTML
- 好程式設計師web前端培訓分享CSS定位的教程程式設計師Web前端CSS
- 好程式設計師web前端培訓分享如何講清楚Promise?程式設計師Web前端Promise
- 好程式設計師Web前端培訓分享如何講清楚this指向?程式設計師Web前端
- web前端培訓需要學多久呢Web前端
- 培訓的Web前端什麼水平Web前端
- 長沙web前端培訓班學費多少?長沙培訓前端多少錢?Web前端
- web前端培訓分享:使用Dplayer實現Vue3中的視訊及彈幕播放Web前端Vue
- 好程式設計師web前端培訓分享JavaScript學習筆記之設計模式程式設計師Web前端JavaScript筆記設計模式
- 好程式設計師web前端培訓分享JavaScript學習筆記之ES5程式設計師Web前端JavaScript筆記
- web前端培訓:常用的Web前端開發框架有哪些?Web前端框架
- 好程式設計師web前端培訓分享Vue面試題1.程式設計師Web前端Vue面試題
- 好程式設計師web前端培訓分享九個JavaScript小技巧程式設計師Web前端JavaScript
- 好程式設計師web前端培訓分享JavaScript基礎語法程式設計師Web前端JavaScript