我希望能够在我的 AIR 项目中使用 xslt 文件运行 xml 转换。实现这一目标的最佳方法是什么?
Abdullah Jibaly
问问题
2684 次
2 回答
3
在 AIR 1.5 中,包含了一个支持 XSLT 的 Webkit 版本。
XSLTProcessor
就像在 Firefox 中一样使用 JavaScript 中的类。(注意:有一个烦人的错误。样式表不能包含不间断的空格,无论是字面意思还是作为字符引用。有人告诉我,最新版本的 Webkit 将解决这个问题。)
下面是一个完整的例子。
创建文件test.html
<html>
<head>
<title>XSLT test</title>
<script type="text/javascript">
// <!--
function test() {
// Step 1: Parse the stylesheet
var stylesheet
= "<xsl:transform xmlns:xsl='http://www.w3.org/1999/XSL/Transform'"
+ " version='1.0'>"
+ " <xsl:template match='/'>"
+ " Hello World from XSLT!"
+ " </xsl:template>"
+ "</xsl:transform>";
var stylesheetDocument
= new DOMParser().parseFromString(stylesheet, "application/xml");
// Step 2: Parse the source document
var source = "<dummy/>";
var sourceDocument
= new DOMParser().parseFromString(source, "application/xml");
// Step 3: Perform the XSL transformation
var xslt = new XSLTProcessor();
xslt.importStylesheet(stylesheetDocument);
var newFragment = xslt.transformToFragment(sourceDocument, document);
// Step 4: Show the result
document.body.appendChild(newFragment.firstChild);
}
// -->
</script>
</head>
<body>
<input type="submit" onclick="test()">
Output:
</body>
</html>
和一个文件test.xml
<application xmlns="http://ns.adobe.com/air/application/1.0">
<id>test</id>
<filename>test</filename>
<initialWindow>
<content>test.html</content>
<visible>true</visible>
</initialWindow>
</application>
您可以使用调试运行时进行尝试,例如:
adl test.xml
点击按钮,它会说:
(来源:lichteblau.com)
于 2009-02-24T12:59:13.537 回答
1
XSLT 支持通常由浏览器提供。AIR 中嵌入的 Webkit 版本不支持 XSLT。所以,你必须自己做这一切。我发现这个项目可以让您在 AS3 中使用 XPath 查询。现在,您必须自己完成模板解析和节点创建。
于 2009-02-22T05:29:25.957 回答