gpt4 book ai didi

javascript - XSLTProcessor.transformToDocument 返回 null

转载 作者:搜寻专家 更新时间:2023-10-30 21:36:28 24 4
gpt4 key购买 nike

我在 typescript 代码中使用 XSLTProcessor 时遇到了一些问题。 transformToDocument 总是在没有明显原因的情况下返回 null。这是我的代码:

private GenerateForm() {
var xsltProcessor = new XSLTProcessor();
xsltProcessor.importStylesheet(this.NodeFromString(formTransform));
var resultDocument = xsltProcessor.transformToDocument(this.NodeFromString(schema));
console.log(resultDocument);
$("#form-position").append(resultDocument);
}

private NodeFromString(xmlString: string): Node {
var doc = new DOMParser().parseFromString(xmlString, "text/xml");
console.log(doc.documentElement);
return doc.documentElement;
}

formTransformschema 字符串包含导入到字符串的这 2 个文件的完整表示。这是我想要实现的转变:https://xsltfiddle.liberty-development.net/94hvTzb

最佳答案

XSLT 的浏览器实现仅支持 XSLT 1.0,不支持或忽略您尝试使用的 xsl:function 等 XSLT 2 功能。

关于javascript - XSLTProcessor.transformToDocument 返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50887444/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com