Global variable in Web worker

前端 未结 2 436
闹比i
闹比i 2020-12-08 00:28

I am using this Web worker which has a Global variable declared in it. Can I access the same (Global variable in worker 1) in the newly spawned web worker(worker 2)?

<
相关标签:
2条回答
  • 2020-12-08 01:04

    Web Workers don't have a window object.

    To access global state, use self instead, code that will work on both the main thread and the worker thread.

    But note that you still won't be able to access or manipulate the parent DOM (e.g. get window.jQuery via self.jQuery).

    While the main thread window self points to the Window object, in worker threads self points to a separate WorkerGlobalScope object.

    0 讨论(0)
  • 2020-12-08 01:04

    Based on @buley tip, I did it:

    var window = self;
    
    importScripts(/* dependencies here */);
    
    /* my code */
    

    In my case I was trying to use the ES6-Promise lib: https://github.com/jakearchibald/es6-promise#readme

    0 讨论(0)
提交回复
热议问题