我有这样的XML:
<?xml version="1.0" encoding="UTF-8"?>
<Section>
<Chapter>
<Cell colname="1">
<Value>A</Value>
</Cell>
<Cell colname="2">
<MyValue>AAA</MyValue>
<MyValue>BBB</MyValue>
</Cell>
<Cell colname="3">
<MyCar>Honda</MyCar>
</Cell>
</Chapter>
<Chapter>
<Cell colname="1">
<Value>C</Value>
</Cell>
<Cell colname="2">
<MyValue>CCC</MyValue>
</Cell>
<Cell colname="3">
<MyCar>Toyota</MyCar>
</Cell>
</Chapter>
</Section>
我有一个像这样的XSLT:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xs"
version="2.0">
<xsl:output method="xml" version="1.0" encoding="iso-8859-1" indent="yes"/>
<xsl:template match="/">
<xsl:apply-templates select="Section/Chapter"/>
</xsl:template>
<xsl:template match="Chapter">
<xsl:apply-templates select="./Cell/MyValue"/>
</xsl:template>
<xsl:template match="MyValue">
<xsl:message>
<xsl:value-of select="../../Cell/@colname"/>
<xsl:value-of select="../../Cell[@colname='1']/Value"/>
<xsl:value-of select="."/>
<xsl:value-of select="../../Cell[@colname='3']/MyCar"/>
</xsl:message>
</xsl:template>
<xsl:template match="text()" />
</xsl:stylesheet>
问题是调试输出显示为1 2 3 A AAA本田1 2 3 A BBB本田1 2 3 C CCC丰田。我想获得像1 A 2 AAA 3 Honda 1 A 2 BBB 3 Honda 1 C 2 CCC 3 Toyota这样的东西。基本上正确获取属性colname的值。
所以有几个问题:
TIA,
约翰
答案 0 :(得分:2)
所以有几个问题:
- 我做错了什么?
醇>
您没有准确指定必要的表达式。
- 有一个序列1 2 3生成为什么?。
醇>
由于../../Cell/@colname
选择当前节点的祖父母colname
的每个 Cell
子项的Chapter
属性。
<强>解决方案强>:
使用强>:
<xsl:template match="MyValue">
<xsl:message>
<xsl:value-of select="../../Cell[1]/@colname"/>
<xsl:value-of select="../../Cell[@colname='1']/Value"/>
<xsl:value-of select="../@colname"/>
<xsl:value-of select="."/>
<xsl:value-of select="../../Cell[3]/@colname"/>
<xsl:value-of select="../../Cell[@colname='3']/MyCar"/>
</xsl:message>
</xsl:template>
调试输出正是所需的:
1A2AAA3Honda
1A2BBB3Honda
1C2CCC3Toyota
您也可以稍微修改上一个问题的答案:
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="Chapter">
<xsl:apply-templates select="Cell[1]"/>
</xsl:template>
<xsl:template match="Cell">
<xsl:param name="pText" as="xs:string*"/>
<xsl:apply-templates select="*[1]">
<xsl:with-param name="pText" select="$pText"/>
</xsl:apply-templates>
</xsl:template>
<xsl:template match="Cell/*">
<xsl:param name="pText" as="xs:string*"/>
<xsl:variable name="vText" as="xs:string*"
select="$pText, ../@colname, string(.)"/>
<xsl:sequence select=
"$vText
[not(current()/../following-sibling::Cell)]"/>
<xsl:apply-templates select="../following-sibling::Cell[1]">
<xsl:with-param name="pText" select="$vText"/>
</xsl:apply-templates>
<xsl:apply-templates select="following-sibling::*">
<xsl:with-param name="pText" select="$pText"/>
</xsl:apply-templates>
</xsl:template>
</xsl:stylesheet>
在提供的XML文档上应用此转换时:
<Section>
<Chapter>
<Cell colname="1">
<Value>A</Value>
</Cell>
<Cell colname="2">
<MyValue>AAA</MyValue>
<MyValue>BBB</MyValue>
</Cell>
<Cell colname="3">
<MyCar>Honda</MyCar>
</Cell>
</Chapter>
<Chapter>
<Cell colname="1">
<Value>C</Value>
</Cell>
<Cell colname="2">
<MyValue>CCC</MyValue>
</Cell>
<Cell colname="3">
<MyCar>Toyota</MyCar>
</Cell>
</Chapter>
</Section>
产生了想要的正确结果:
1 A 2 AAA 3 Honda 1 A 2 BBB 3 Honda 1 C 2 CCC 3 Toyota
答案 1 :(得分:0)
以下产生了所需的结果:
?xml version =“1.0”encoding =“UTF-8”?&gt;
<xsl:output method="xml" version="1.0" encoding="iso-8859-1" indent="yes"/>
<xsl:template match="/">
<xsl:apply-templates select="Section/Chapter"/>
</xsl:template>
<xsl:template match="Chapter">
<xsl:apply-templates select="./Cell/MyValue"/>
</xsl:template>
<xsl:template match="MyValue">
<xsl:message>
<xsl:value-of select="../../Cell[1]/@colname"/>
<xsl:value-of select="../../Cell[@colname='1']/Value"/>
<xsl:value-of select="../@colname"/>
<xsl:value-of select="."/>
<xsl:text>3</xsl:text>
<xsl:value-of select="../../Cell[@colname='3']/MyCar"/>
</xsl:message>
</xsl:template>
<xsl:template match="text()" />
</xsl:stylesheet>