Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个正在运行的网络工作者,我希望它能够加载外部源。我该怎么做,因为它是在独立于 DOM 的另一个线程中运行的。谢谢。
importScripts 方法允许您加载可在 Web Worker 中使用的外部脚本。注意:需要窗口对象的脚本在这里不起作用,因为窗口对象只能在 UI 线程上访问。更多信息可以在这里找到
设置外部源,使其支持CORS。