我已经用 XSLT 成功地转换了 XML 文档,我正在从 JavaScript 启动这个过程。由于 XML 输入相当大,我的计划是在 webworker 中启动 XSLT 转换。
我在这一行得到的错误
var processor = new XSLTProcessor();
是
`Chrome--> Uncaught ReferenceError: XSLTProcessor is not defined
'Firefox--> XSLTProcessor is not defined`
正如我之前提到的那样,它是有效的。有没有人建议如何在 webworker 中获取 XSLTProcessor 的实例?我知道网络工作者可以访问的内容非常有限。
谢谢 !!