admin管理员组文章数量:1344470
I am trying to post a message to a service worker instance. I get the following error:
Failed to execute 'postMessage' on 'ServiceWorker': function (){ obj.removeListener(ev, fn); } could not be cloned.
My code is as follows:
var socket = io();
function onYouTubeIframeAPIReady() {
//Tell the service worker who I am
navigator.serviceWorker.ready.then(serviceWorkerRegistration => {
navigator.serviceWorker.controller.postMessage({
name: 'socketInit',
value: socket
});
});
}
Any idea why this happens?
I am trying to post a message to a service worker instance. I get the following error:
Failed to execute 'postMessage' on 'ServiceWorker': function (){ obj.removeListener(ev, fn); } could not be cloned.
My code is as follows:
var socket = io();
function onYouTubeIframeAPIReady() {
//Tell the service worker who I am
navigator.serviceWorker.ready.then(serviceWorkerRegistration => {
navigator.serviceWorker.controller.postMessage({
name: 'socketInit',
value: socket
});
});
}
Any idea why this happens?
Share asked Sep 10, 2017 at 20:44 iuliuiuliu 7,1658 gold badges51 silver badges72 bronze badges1 Answer
Reset to default 9Actually found the answer right away, it's in the docs. You basically can't have a Function
-type property (which probably is there somewhere inside the io() object) because it can't be cloned:
Parameters
message
The message to send to the service worker. This can be any structured-clonable type.
A structured-clonable-type
being defined as:
The structured clone algorithm is an algorithm defined by the HTML5 specification for copying plex JavaScript objects. It is used internally when transferring data to and from Workers via postMessage(). It builds up a clone by recursing through the input object while maintaining a map of previously visited references in order to avoid infinitely traversing cycles.
Things that don't work with structured clone
Error and Function objects cannot be duplicated by the structured clone algorithm; attempting to do so will throw a DATA_CLONE_ERR exception. Attempting to clone DOM nodes will likewise throw a DATA_CLONE_ERR exception. Certain parameters of objects are not preserved: The lastIndex field of RegExp objects is not preserved. Property descriptors, setters, and getters (as well as similar metadata-like features) are not duplicated. For example, if an object is marked read-only using a property descriptor, it will be read-write in the duplicate, since that's the default condition. The prototype chain does not get walked and duplicated.
本文标签:
版权声明:本文标题:javascript - Failed to execute 'postMessage' on 'ServiceWorker': function could not be cloned - 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743771310a2536175.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论