Can a webWroker access the localStorage? if not why not? is it problematic from a security stand point?
|
feedback
|
|
No, localStorage and sessionStorage are both undefined in a webworker process. You would have to call Interestingly, a webworker can use an AJAX call to send/retrieve info to/from a server, so that may open possibilities, depending on what you're trying to do. | |||
|
feedback
|
|
Web workers only have access to the following:
The window or parent objects are not accessible from a Web worker therefore you can't access the localStorage. To communicate between window and the workerglobalscope you may use postMessage() function and onmessage event. Accessing the DOM and window would not be thread safe, since the child thread would have the same privileges as its parent. | |||
|
feedback
|