Итак, несколько вопросов:
- Что я сделал не так?
Вы не указали точно необходимые выражения.
* * 1010
- Существует последовательность 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