Using importsScripts within Blob in a karma environment

馋奶兔 提交于 2019-12-03 05:44:11
Wojciech Czerniak

You can't use relative path in worker created with Blob.

Had this problem today. Solution is explained in "The Basics of Web Workers", but a little hidden in length of the article:

The reason being: the worker (now created from a blob URL) will be resolved with a blob: prefix, while your app will be running from a different (presumably http://) scheme. Hence, the failure will be due to cross origin restrictions.

If you are determined to avoid hardcoding domain name in your workers the article has also a solution for this. Import your scripts on receiving a message with URL as one of its parameters:

self.onmessage = function(e) {
    importScripts(e.data.url + 'yourscript.js');
};

and start your worker with sending that url

worker.postMessage({url: document.location.protocol + '//' + document.location.host});

The code above is simplified for clarity.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!