如果存在具有特定属性的特定节点,则跳过xslt转换

时间:2017-05-29 11:09:54

标签: xpath xslt-1.0

如果特定节点具有特定属性值,我想跳过xslt转换。

示例XML 1:

<root>
<div class = "noEdit"/>
<name value= "ABC"/>
<address value= "ABC"/>
</root>

示例XML 2:

 <root>
<div class = "Edit"/>
<name value= "ABC"/>
<address value= "ABC"/>
</root>

所以现在我有这两个XML,我不想在样本1的情况下应用XSLT转换,但是在样本2的情况下应用。条件是根据div标签的class属性的值确定的。我的Sample XSLT目前是

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0">
<xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="@ | node()">
<xsl:copy> <xsl:apply-template select="@*|node()"/>
</xsl:copy>
<xsl:template match="name" >
    <TransformedName><xsl:value-of select="value"/></TransformedName>
</xsl:template>
<xsl:template match="address" >
  <Transformedaddress><xsl:value-of select="value"/></Transformedaddress>
</xsl:template>

上述XSLT适用于这两种情况。 1解决方案是在名称和地址模板匹配上放置DIV的前一个子句,但这将是开销和代码重复,因为我在原始XSLT中有太多的节点,如地址和名称。

1 个答案:

答案 0 :(得分:0)

您可以添加以下模板:

TextBlock

这将拦截第一个示例中的<xsl:template match="/root[div/@class='noEdit']"> <xsl:copy-of select="."/> </xsl:template> 元素,并停止应用任何其他模板,从而产生与输入相同的输出。

请注意:

root

应该是:

<xsl:value-of select="value"/>