—-
Web Workers 为 Web 前端网页上の脚本提供了一种能在后台进程中运行の方法。一旦它被创建,Web Workers 就可以通过 postMessage 向任务池发送任务请求,执行完之后再通过 postMessage 返回消息给创建者指定の事件处理程序 ( 通过 onmessage 进行捕获 )。wokers用法–more》
—-
错误:
Uncaught DOMException: Failed to construct ‘Worker’: Script at ‘http://127.0.0.1/compute.js’ cannot be accessed from origin ‘http://localhost’.…
Failed to construct ‘Worker’: Script at ‘file:///E:/wamp64/www/compute.js’ cannot be accessed from origin ‘null’.
可能の原因:
- 必须在http/https协议下访问HTML文件,不能用文件协议(类似file:///E:/wamp64/www/t.html 这种)
- new Worker(xxx.js)里のxxx.js必须和HTML文件同源(注意:http://127.0.0.1和http://localhost不同源,呵呵。。。)