这看起来很简单,但我似乎无法让它发挥作用。
我的xml看起来像这样:
<bsar:BSAForm>
<bsar:SubjectInformation>
<bsar:LastNameOrNameOfEntity> Obama</bsar:LastNameOrNameOfEntity>
<bsar:AddressBlock>
<ucc:Address> 9 Dale Rd</ucc:Address>
<ucc:City> Woodbury</ucc:City>
</bsar:AddressBlock>
<bsar:AddressBlock>
<ucc:Address> 123 Fake St</ucc:Address>
<ucc:City> Springfield</ucc:City>
</bsar:AddressBlock>
</bsar:SubjectInformation>
</bsar:BSAForm>
我需要迭代这两个元素并显示内容。我的XSLT看起来像这样:
<xsl:template match=/bsar:BSAForm">
<xsl:apply-templates select="bsar:SubjectInformation"/>
</xsl:template>
<xsl:template match="bsar:SubjectInformation">
<xsl:text xml:space="preserve">4A</xsl:text>
<xsl:text xml:space="preserve">00001</xsl:text>
<xsl:value-of select="bsar:LastNameOrNameOfEntity"/>
<xsl:value-of select="'
'"/> <!-- new line -->
<xsl:apply-templates select="bsar:AddressBlock"/>
</xsl:template>
<xsl:template match="bsar:AddressBlock">
<xsl:variable name="Addr" select="../bsar:AddressBlock"/>
<xsl:text xml:space="preserve">4B</xsl:text>
<xsl:text xml:space="preserve">00001</xsl:text>
<xsl:value-of select="$Addr/ucc:Address"/>
<xsl:value-of select="$Addr/ucc:City"/>
<xsl:value-of select="'
'"/> <!-- new line -->
</xsl:template>
输出应如下:
4A 00001 Obama
4B 9 Dale Rd Woodbury
4B 123 Fake St Springfield
但相反,输出结果如下:
4A 00001 Obama
4B 9 Dale Rd Woodbury
4B 9 Dale Rd Woodbury
我尝试了很多不同的方法,使用for each,每个使用a,就像这样:
<xsl:variable name="header" select="."/>
<xsl:for-each select="following-sibling::bsar:TelephoneBlock[ancestor::bsar:SubjectInformation[1] = $header]">
甚至从for循环中传入一个计数器并使用它来访问指定的元素,如下所示:
<xsl:for-each select="bsar:TelephoneBlock">
<xsl:variable name="Index">
<xsl:number count="bsar:TelephoneBlock" />
</xsl:variable>
<xsl:call-template name="SubjectPhone">
<xsl:with-param name="$Index"/>
</xsl:call-template>
</xsl:for-each>
<xsl:template name="SubjectPhone">
<xsl:param name="Index"/>
<xsl:variable name="Telephone" select="../bsar:TelephoneBlock[$Index]"/>
...
</xsl:template>
在所有这些情况下,它会显示第一个地址两次。如果你发现我做错了什么,请告诉我。
提前致谢。
答案 0 :(得分:3)
<xsl:variable name="Addr" select="../bsar:AddressBlock"/>
bsar:AddressBlock
模板中的会将Addr
变量设置为包含所有当前元素父级下的bsar:AddressBlock
元素的节点集,即当前的AddressBlock以及它的所有兄弟AddressBlock元素。当你以后来
<xsl:value-of select="$Addr/ucc:Address"/>
这将选择一个包含ucc:Address
中所有AddressBlock元素的所有$Addr
子元素的节点集,然后将 first 这样的元素按文档顺序转换为其字符串value(XPath 1.0中设置的节点的“字符串值”的定义是其第一个节点的字符串值)。这将始终是第一个AddressBlock中的ucc:Address
,这就是您看到相同地址两次的原因。
但是变量是不必要的,因为你在一个适用于一个AddressBlock的模板中 - 只需说明
<xsl:template match="bsar:AddressBlock">
<xsl:text>4B</xsl:text>
<xsl:text>00001</xsl:text>
<xsl:value-of select="ucc:Address"/>
<xsl:value-of select="ucc:City"/>
<xsl:value-of select="'
'"/> <!-- new line -->
</xsl:template>
select
表达式将相对于当前的AddressBlock,并将专门提取其地址和城市,并生成
4A00001 Obama
4B00001 9 Dale Rd Woodbury
4B00001 123 Fake St Springfield
这确实依赖于在原始XML中每个Address和City值的开头都有一个领先空间的事实,你可能更喜欢说类似
<xsl:template match="bsar:AddressBlock">
<xsl:text>4B </xsl:text>
<xsl:text>00001 </xsl:text>
<xsl:value-of select="normalize-space(ucc:Address)"/>
<xsl:text> </xsl:text>
<xsl:value-of select="normalize-space(ucc:City)"/>
<xsl:value-of select="'
'"/> <!-- new line -->
</xsl:template>
(请注意xml:space="preserve"
是<xsl:text>
的默认设置,因此您无需明确指定它。