xsl:template上的XSLT测试

时间:2014-12-11 11:22:20

标签: xml xslt xslt-1.0

我是一个xml文件

<?xml version="1.0" encoding="UTF-8"?> 
<CategoriesList>
  <Category ID="1" >
    <Name ID="1395687" Value="Libelle1" langid="1"/>
    <Name ID="1395689" Value="" langid="3"/>
  </Category>
  <Category ID="2" >
    <Name ID="1395687" Value="" langid="1"/>
    <Name ID="1395689" Value="Libelle2" langid="3"/>
  </Category>
</CategoriesList>

我尝试使用XSLT文件进行智能过滤

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output  method="xml" encoding="UTF-8" indent="yes"/>

<xsl:template match="/">
    <xsl:apply-templates/>
</xsl:template>

<xsl:template match="CategoriesList">
    <xsl:apply-templates select="Category"/>
</xsl:template>

<xsl:template match="Category">
    <xsl:element name="Category">
        <xsl:attribute name="ID">
            <xsl:value-of select="@ID"/>
        </xsl:attribute>
        <xsl:apply-templates select="Name"/>
    </xsl:element>
</xsl:template>

<xsl:template match="Name[@langid=3]">
    <xsl:attribute name="Name">
        <xsl:value-of select="@Value"/>
    </xsl:attribute>
</xsl:template>

我可以过滤只使用langid = 3的Name节点 但我想要 : 如果具有langid = 3的Name节点为空,则使用langid = 1的Name节点 如果具有langid = 3的Name节点不为空,则使用langid = 3

的Name节点 我看到了

拜托,能帮到我吗

1 个答案:

答案 0 :(得分:1)

如果&#34;空&#34;表示Value属性为空,请尝试类似:

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>

<xsl:template match="/CategoriesList">
    <xsl:copy>
        <xsl:apply-templates select="Category"/>
    </xsl:copy>
</xsl:template>

<xsl:template match="Category">
    <xsl:copy>
        <xsl:copy-of select="@*"/>
        <xsl:attribute name="Name">
            <xsl:choose>
                <xsl:when test="Name[@langid=3][string(@Value)]">
                    <xsl:value-of select="Name[@langid=3]/@Value"/>
                </xsl:when>
                <xsl:otherwise>
                    <xsl:value-of select="Name[@langid=1]/@Value"/>
                </xsl:otherwise>
            </xsl:choose>
        </xsl:attribute>
    </xsl:copy>
</xsl:template> 

</xsl:stylesheet>

应用于您的输入示例,结果为:

<?xml version="1.0" encoding="UTF-8"?>
<CategoriesList>
  <Category ID="1" Name="Libelle1"/>
  <Category ID="2" Name="Libelle2"/>
</CategoriesList>

请注意,我们假设langid在每个类别中都是唯一的。