为什么 ChromeWorker 会抛出“组件未定义”?
有关 ChromeWorkers 的文档表示他们拥有“chrome 权限”,并且chrome 权限应该意味着他们可以做任何事情,但是当我创建 ChromeWorker 并尝试使用 组件
我收到“组件”未定义的错误。
所以我的问题是
- 为什么组件不可用?
- ChromeWorker 可以使用什么?
The documentation on ChromeWorkers says that they have "chrome privileges", and chrome privileges are supposed to mean they can do anything, but when I create a ChromeWorker and try to use Components
I get an error that 'Components' is not defined..
So my question is
- why is Components not available?
- what is available to a ChromeWorker?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法访问
Components
对象,因为Components
对象不是线程安全的。 ChromeWorker 使您能够访问 Worker 有权访问的所有内容以及 c 类型。You cannot access the
Components
object because theComponents
object isn't threadsafe. A ChromeWorker gives you access to everything a Worker has access to, and c-types.