I have a single web worker which makes about 30 AJAX requests and after each request it sends a message to the UI using postMessage to log the progress. For example:

postMessage({type: "progress", name: "customers", message: "Success" }).

After about 10-20 requests (not always the same number), the following error appears:

Uncaught SyntaxError: Not enough arguments.

If I remove the postMessage calls, everything works fine, and if I add additional postMessage calls, the web worker gives the error after even fewer requests.

It seems to also depend on the type of data, the web worker dies sooner if the postMessage calls contain JSON objects rather than strings.

Does anyone know why this happens ?

link|improve this question

50% accept rate
feedback

1 Answer

It turns out that, at least in my case, postMessage fails if it is called multiple times in a short amount of time (milliseconds)

Calling postMessage only every 500 milliseconds solved the issue for me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.