我有问题,我需要你。
我有一个想法用以下代码解决它:
<xsl:template match="root">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="*[@foo]" priority="3">
<p>This text must be systematically added for any rendered element having a foo attribute</p>
<xsl:apply-templates select="."/>
</xsl:template>
<xsl:template match="bar1">
<p>This is the normal rendering for the bar1 element</p>
</xsl:template>
<xsl:template match="bar1[@class='1']">
<p>This is the normal rendering for the bar1 element with class 1</p>
</xsl:template>
<xsl:template match="bar1[@class='2']">
<p>This is the normal rendering for the bar1 element with class 2</p>
</xsl:template>
...
<xsl:template match="barN">
<p>This is the normal rendering for the barN element</p>
</xsl:template>
当我尝试将此 xsl 应用于以下 xml 时:
<root>
<bar1 foo="1"></bar1>
<bar1 foo="1" class="1"></bar1>
<bar1 class="2"></bar1>
<bar1></bar1>
...
<barN foo="n"></barN>
<barN></barN>
</root>
XSLT 引擎在 priority="3" 模板上无限循环,而不是(根据我的需要)先应用一次 priority="3" 模板,然后应用 bar1 .. barN 模板。
如何在不修改每个 bar1 .. barN 模板(N~=150)的情况下执行此操作以在每个具有 foo 属性的元素上添加系统文本?