我正在了解工人。我可以使用 importScripts ,但是,加载导入脚本的上下文是什么?
如果在我的工作人员内部,我执行了以下操作:
worker.js
importScripts('embeed.js')
hello // contains "hello world"
self.hello // undefined
this.hello // undefined
embeed.js
const hello = "hello world"
您好在什么情况下保存?它不在自身中,并且工作程序不会公开窗口,因此,如何知道 hello 变量?有一些原型链吗?