1

我正在尝试将 xml 转换为新结构,然后在转换中处理新结构。我的问题是让新结构可用作节点集。我在 webapp 的库中使用 Tomcat 6 和 saxon9he。为了测试新结构的可用性,我创建了以下 xsl。

<?xml version="1.0" encoding="UTF-8"?>

<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:output method="xml" omit-xml-declaration="no" indent="yes" encoding="UTF-8"/>

<xsl:include href="nodeTest.xsl"/>
<xsl:variable name="theDoc"> 
  <doc>
    <source>from</source>
    <source>here</source>
    <target>to</target>
    <target>there</target>
  </doc>
</xsl:variable>

<xsl:template match="/">
  <xsl:variable name="result1">
    <xsl:call-template name="createLinks">
    <xsl:with-param name="doc" select="$theDoc/doc/*"/>
    </xsl:call-template>
  </xsl:variable>
input:
<xsl:value-of select="$theDoc/doc/*"/>
output:
<xsl:value-of select="$result1"/>
</xsl:template>

</xsl:stylesheet>

我希望变量 theDoc 将包含一个有效的节点集,并且 createLinks 模板会将它作为一个节点集来处理。这是 createlInks 模板;

<?xml version="1.0" encoding="UTF-8"?>

<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" > 

<xsl:template match="node()" mode="makeLink"> 
  <xsl:param name="theSource" select="'source'"/>
  <xsl:param name="theTarget" select="'target'"/>
  <xsl:param name="theUsage" select="'usage'"/>
  <xsl:element name="link" >
  <xsl:element name="usage" ><xsl:value-of select="$theUsage"/></xsl:element>
  <xsl:element name="source" ><xsl:value-of select="$theSource"/></xsl:element>
  <xsl:element name="target" ><xsl:value-of select="$theTarget"/></xsl:element>
  </xsl:element>    
</xsl:template>

<xsl:template name="createLinks">
<xsl:param name="doc" select="*"/>
the input doc:
<xsl:value-of select="$doc"/>
<xsl:copy>
  <xsl:element name="Links">
        <xsl:apply-templates mode="makeLink" select=".">
      <xsl:with-param name="theUsage" select="'link from source to target'"/>
      <xsl:with-param name="theSource" select="$doc/source/*"/>
      <xsl:with-param name="theTarget" select="$doc/target/*"/>
        </xsl:apply-templates>
  </xsl:element>
   </xsl:copy>
</xsl:template>

</xsl:stylesheet>

执行时,结果如下所示;

<?xml version="1.0" encoding="UTF-8"?>
input:
from here to there
output:

the input doc:
fromheretotherelink from source to target

很明显theDoc 不是一个节点集。我的理解是 xslt 2.0 标准将 theDoc 作为节点集,而不是结果树片段。如何更改这些简单的 xsls 以将 theDoc 的内容作为节点集处理?

4

2 回答 2

2

我不清楚你是如何得出结论的:

“很明显theDoc不是一个节点集。我的理解是xslt 2.0标准将theDoc作为一个节点集,而不是一个结果树片段。我怎样才能改变这些简单的xsls来处理theDoc的内容作为一个节点集?”

这里的第一个问题是您使用的是 XSLT 1.0 数据模型术语。在 2.0 中,没有节点集,只有序列,也没有结果树片段之类的东西。

$theDoc 的值是一个文档节点。此文档节点有一个名为 doc 的子元素,它又具有四个子元素,分别为 source、source、result 和 result。

当你这样做时:

<xsl:value-of select="$doc"/>

它输出这个文档节点的字符串值,它是后代文本节点的串联,即fromheretothere

当你这样做时:

<xsl:value-of select="$result1"/>

你输出 $result1 的字符串值,它本身就是一个文档节点;这个文档节点有一个子节点叫做link,它有3个子节点,分别叫做usage、source和target;使用元素有文本内容“从源到目标的链接”,源和目标元素都是空的。它们为空的原因是表达式$doc/source/*$doc/target/*没有选择;他们什么都不选择,因为 $doc 有一个名为 doc 的孩子;源和目标元素是它的孙子。

于 2013-02-03T22:55:37.167 回答
1

您的 XSLT 中有几个问题会阻止它按预期工作。第一个是使用xsl:value-of来显示变量值的地方。例如

<xsl:value-of select="$doc"/>

这只会显示节点集的文本值。您应该在这里真正使用xsl:copy-of来返回节点的副本。

<xsl:copy-of select="$doc" />

尝试用 xsl:copy-of 替换所有出现的xsl : value-of以了解您的情况。

其次,当您调用“makelink”模板时,您的参数存在问题

<xsl:with-param name="theSource" select="$doc/source/*"/>
<xsl:with-param name="theTarget" select="$doc/target/*"/>

* 将匹配元素和目标元素的子元素,但它们没有子元素,只有子文本节点(元素是节点,但并非所有节点都是元素!)。你可能想这样做....

<xsl:with-param name="theSource" select="$doc/source"/>
<xsl:with-param name="theTarget" select="$doc/target"/>

事实上,即使这样也行不通,因为您调用模板的方式

<xsl:call-template name="createLinks">
    <xsl:with-param name="doc" select="$theDoc/doc/*"/>
</xsl:call-template>

以这种方式调用它意味着目标是顶级元素。你可能想这样做......

 <xsl:call-template name="createLinks">
     <xsl:with-param name="doc" select="$theDoc/doc"/>
 </xsl:call-template>
于 2013-02-03T22:21:31.353 回答