输入XML:
<lines>
<line>
<accountings>
<accounting>
<account>
<seg1>value1</seg2>
</account>
</accounting>
<accounting>
<account>
<seg1>value2</seg2>
</account>
</accounting>
</accountings>
</line>
<line>
<accountings>
<accounting>
<account>
<seg1>value3</seg2>
</account>
</accounting>
</accountings>
</line>
<line>
<account>
<seg1>value4</seg1>
</account>
</line>
</lines>
OutPut XML:我必须迭代元素找到段的出现并根据存在的帐号数量。使用相应的值
创建相同数量的元素<item>
<id>1</id>
<vname>value1</vname>
</item>
<item>
<id>2</id>
<vname>value2</vname>
</item>
<item>
<id>3</id>
<vname>value3</vname>
</item>
<item>
<id>4</id>
<vname>value4</vname>
</item>
获得此解决方案的最佳方式是什么。
下面是我不完整的XSLT。我试图存储每次迭代的帐户数据。我没有在这段代码中循环,因为我已经困惑了。请帮助并完成我的XSLT。
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/">
<xsl:output method="xml" omit-xml-declaration="yes" media-type="string"/>
<xsl:template match="/">
<xsl:variable name="SegmentData" as="element()*">
<xsl:call-template name="CheckSegment">
<xsl:with-param name = "vaccount" select="./*:lines/*:line/*:accountings/*:accounting/*:account"/>
</xsl:call-template>
</xsl:variable>
<xsl:element name="item">
<xsl:element name="id">
<xsl:value-of select="position()"/>
</xsl:element>
<xsl:element name="vname">
<xsl:value-of select="$SegmentData/*:vnum"/>
</xsl:element>
</xsl:element>
</xsl:template>
<xsl:template name="CheckSegment" as="element()*">
<xsl:param name = "vaccount"/>
<xsl:element name="vnum">
<xsl:value-of select="$vaccount/*:seg1"/>
</xsl:element>
</xsl:template>
</xsl:stylesheet>
答案 0 :(得分:1)
从我所看到的,这只是
<xsl:template match="/">
<xsl:for-each select="//seg1">
<item>
<id><xsl:value-of select="position()"/></id>
<vname><xsl:value-of select="."/></vname>
</item>
</xsl:for-each>
</xsl:template>
如果我错过了要求中的某些内容,那么您需要更清楚地解释它。 (你是什么意思&#34;填充架构&#34;,例如?)