electron/docs/api/ipc-renderer.md

55 lines
1.7 KiB
Markdown
Raw Normal View History

2015-11-10 16:48:24 +08:00
# ipcRenderer
2013-08-14 15:43:35 -07:00
2015-11-10 16:48:24 +08:00
The `ipcRenderer` module provides a few methods so you can send synchronous and
2015-08-27 10:13:25 -07:00
asynchronous messages from the render process (web page) to the main process.
2015-08-28 14:21:37 -07:00
You can also receive replies from the main process.
2015-08-26 17:56:10 -07:00
2015-11-10 16:48:24 +08:00
See [ipcMain](ipc-main.md) for code examples.
2013-08-14 15:43:35 -07:00
2015-11-10 16:48:24 +08:00
## Listening for Messages
2015-08-26 17:56:10 -07:00
2015-11-10 16:48:24 +08:00
The `ipcRenderer` module has the following method to listen for events:
2015-08-26 17:56:10 -07:00
2015-11-10 16:48:24 +08:00
### `ipcRenderer.on(channel, callback)`
2015-08-26 17:56:10 -07:00
2015-11-10 16:48:24 +08:00
* `channel` String - The event name.
* `callback` Function
When the event occurs the `callback` is called with an `event` object and
arbitrary arguments.
## Sending Messages
The `ipcRenderer` module has the following methods for sending messages:
2015-08-26 17:56:10 -07:00
2015-11-10 16:48:24 +08:00
### `ipcRenderer.send(channel[, arg1][, arg2][, ...])`
2015-08-26 17:56:10 -07:00
* `channel` String - The event name.
2015-08-28 14:57:14 -07:00
* `arg` (optional)
2015-08-26 17:56:10 -07:00
2015-11-10 16:48:24 +08:00
Send an event to the main process asynchronously via a `channel`, you can also
send arbitrary arguments. The main process handles it by listening for the
`channel` event with `ipcMain`.
2013-08-14 15:43:35 -07:00
2015-11-10 16:48:24 +08:00
### `ipcRenderer.sendSync(channel[, arg1][, arg2][, ...])`
2013-08-14 15:43:35 -07:00
2015-08-26 17:56:10 -07:00
* `channel` String - The event name.
2015-08-28 14:57:14 -07:00
* `arg` (optional)
2013-08-14 15:43:35 -07:00
2015-11-10 16:48:24 +08:00
Send an event to the main process synchronously via a `channel`, you can also
send arbitrary arguments.
2013-08-14 15:43:35 -07:00
The main process handles it by listening for the `channel` event with
`ipcMain` and replies by setting `event.returnValue`.
2013-08-14 15:43:35 -07:00
2015-11-10 16:48:24 +08:00
__Note:__ Sending a synchronous message will block the whole renderer process,
unless you know what you are doing you should never use it.
2014-12-17 11:09:11 -08:00
2015-11-10 16:48:24 +08:00
### `ipcRenderer.sendToHost(channel[, arg1][, arg2][, ...])`
2014-12-17 11:09:11 -08:00
2015-08-26 17:56:10 -07:00
* `channel` String - The event name.
2015-08-28 14:57:14 -07:00
* `arg` (optional)
2014-12-17 11:09:11 -08:00
2015-11-10 16:48:24 +08:00
Like `ipcRenderer.send` but the event will be sent to the `<webview>` element in
the host page instead of the main process.