我正试图用这个解决方案远离程序方法,我不确定这是否可能。
这是我的XML:
<countData>
<count countId="37" name="Data Response 1">
<year yearId="2013">
<month monthId="5">
<day dayId="23" countVal="6092"/>
<day dayId="24" countVal="6238"/>
<day dayId="27" countVal="6324"/>
<day dayId="28" countVal="6328"/>
<day dayId="29" countVal="3164"/>
</month>
<day dayId="23" countVal="7000"/>
<day dayId="24" countVal="7000"/>
<day dayId="27" countVal="7000"/>
<day dayId="28" countVal="7000"/>
<day dayId="29" countVal="7000"/>
</month>
</year>
</count>
<count countId="39" name="Data Response 2">
<year yearId="2013">
<month monthId="5">
<day dayId="23" countVal="675"/>
<day dayId="24" countVal="709"/>
<day dayId="27" countVal="754"/>
<day dayId="28" countVal="731"/>
<day dayId="29" countVal="377"/>
</month>
</year>
</count>
我想为所有37或39的count/@ countid应用模板(在这个例子中)。我在这里:
<xsl:template match="/">
<xsl:apply-templates mode="TimeFrame"/>
</xsl:template>
<xsl:template match="*" mode="TimeFrame">
<xsl:if test="count[@countId=37] or count[@countId=39]">
<magic>Only hitting this once for countId 37</magic>
</xsl:if>
</xsl:template>
我将有相当多的这些模板带有"模式",因为我正在以多种不同的方式处理相同的响应。
不知道我怎么错过了"范围"匹配,只得到1。
我确信这与我的"程序思维"有关。:)
任何帮助在这将是伟大的!
谢谢,
您的主模板<xsl:template match="/">
只运行一次-即<countData>
元素。
这意味着你要么忘记了递归:
<xsl:template match="*" mode="TimeFrame">
<xsl:if test="count[@countId=37] or count[@countId=39]">
<magic>Only hitting this once for countId 37</magic>
</xsl:if>
<xsl:apply-templates mode="TimeFrame"/> <!-- ! -->
</xsl:template>
…或者您没有为主模板设置正确的上下文:
<xsl:template match="/countData"><!-- ! -->
<xsl:apply-templates mode="TimeFrame"/>
</xsl:template>
<!-- or, alternatively -->
<xsl:template match="/">
<xsl:apply-templates select="countData/*" mode="TimeFrame"/>
</xsl:template>