我可以从 ServiceWorker 中的外部 JS 文件调用方法吗?
是否可以从 ServiceWorker 中调用 JavaScript 文件中的函数?
Is it possible to call a function from a JavaScript file out of an ServiceWorker?
目录
root
static
js
serviceworker.js
tmpBuild
js
pages
Overview.js
serviceworker.js 必须调用 Overview.js 中的方法!那可能吗?怎么做?
serviceworker.js has to call a method from Overview.js! Is that possible? And How?
推荐答案
你可以使用 importScripts() https://developer.mozilla.org/en-US/docs/Web/API/WorkerGlobalScope/importScripts
importScripts('https://example.com/script.js');
相关文章