Web Workers - How To Import Modules

前端 未结 4 1935
后悔当初
后悔当初 2020-12-14 00:37

I am using ES2015 Import / Export modules.

In my worker file, when I try to import functions like I normally do:

worker.js

i         


        
4条回答
  •  醉梦人生
    2020-12-14 01:08

    2020:

    Chrome 80 has shipped module workers in February 2020 (and Chrome 82 will ship modules for shared workers). Firefox/Safari do not support those features for now: tests

    You may use want to use import-from-worker lib to do the heavy lifting for you (for now, you need to check the support for modules in workers and do the fallback yourself).

提交回复
热议问题