-
Notifications
You must be signed in to change notification settings - Fork 879
Closed
Description
https://wangdoc.com/javascript/bom/webworker.html#%E9%94%99%E8%AF%AF%E5%A4%84%E7%90%86
worker.onerror(function (event) {
console.log([
'ERROR: Line ', event.lineno, ' in ', event.filename, ': ', event.message
].join(''));
});
应该为:
worker.onerror = function (event) {
console.log([
'ERROR: Line ', event.lineno, ' in ', event.filename, ': ', event.message
].join(''));
};
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels