SharedWorkerGlobalScope.onconnect - Web APIs 编辑
The onconnect
property of the SharedWorkerGlobalScope
interface is an event handler representing the code to be called when the connect
event is raised — that is, when a MessagePort
connection is opened between the associated SharedWorker
and the main thread.
Syntax
onconnect = function() { ... };
Examples
This example shows a shared worker file — when a connection to the worker occurs from a main thread via a MessagePort
, the onconnect
event handler fires. The event object is a MessageEvent
.
The connecting port can be referenced through the event object's ports
parameter; this reference can have an onmessage
handler attached to it to handle messages coming in through the port, and its postMessage()
method can be used to send messages back to the main thread using the worker.
onconnect = function(e) {
var port = e.ports[0];
port.onmessage = function(e) {
var workerResult = 'Result: ' + (e.data[0] * e.data[1]);
port.postMessage(workerResult);
}
port.start();
}
For a complete running example, see our Basic shared worker example (run shared worker.)
Note: The data
property of the event object used to be null
in Firefox. As of version 65 it is now initialized to an empty string, as per spec (bug 1508824).
Specifications
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'onconnect' in that specification. | Living Standard |
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论