XML / XSL:检查ID是否存在,然后将CLASS添加到其他元素

时间:2015-02-03 15:42:19

标签: xml xslt

如果我有这些代码......

<code id="hello">
<tag>
<moretags>...</moretags>
</tag>
</code>

与代码相比:

<code id="hello">
<tag>
<moretags id="joker">...</moretags>
</tag>
</code>

我可以(在我的file.xsl 中)使用这样的规则:

如果出现id =“joker”(在带有file.xsl模板的HTML文件中)然后将class =“world”添加到id =“你好“

如果是,该规则会是什么样的?

我:总新手。试图进入事物。试图向朋友解释我的意思。无法让自己明白。现在我知道如何表达我的问题 - 朋友不在身边。希望你能帮助我。 通过StackOverflow浏览...但由于我几乎不知道框架我的问题我不知道要浏览什么。我确定答案是(在所有可能的情况下,大多数情况下都很简单)已经在某处。如果是这样,请链接。谢谢。

2 个答案:

答案 0 :(得分:0)

在XSLT中,规则称为模板。因此,您将编写一个与此元素匹配的模板:

 <xsl:template match="*[@id = 'hello' and //*[@id='joker']]">

然后复制它并添加另一个属性:

<xsl:copy>
   <xsl:attribute name="class" select="'world'"/>

但是你还需要考虑这个元素的其他属性,然后处理其余的节点。

XML输入

<code id="hello">
<tag>
<moretags id="joker">...</moretags>
</tag>
</code>

<强>样式表

此样式表中唯一的其他模板规则是所谓的身份转换,它只生成输入XML的忠实副本。

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

    <xsl:template match="*[@id = 'hello' and //*[@id='joker']]">
        <xsl:copy>
            <xsl:apply-templates select="@*"/>
            <xsl:attribute name="class" select="'world'"/>
            <xsl:apply-templates select="node()"/>
        </xsl:copy>
    </xsl:template>

    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
    </xsl:template>
</xsl:transform>

XML输出

<code id="hello" class="world">
   <tag>
      <moretags id="joker">...</moretags>
   </tag>
</code>

答案 1 :(得分:0)

  

现在我知道如何表达我的问题了

我不会那么远......但是,如果我们可以将问题重述为:

对于任何元素:
 •有一个属性id =“你好”;
•具有属性id =“joker”的后代元素,
添加属性class =“世界”,

然后你可以尝试:

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:strip-space elements="*"/>

<!-- identity transform -->
<xsl:template match="@*|node()">
    <xsl:copy>
        <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
</xsl:template>

<xsl:template match="@id[.='hello'][..//@id='joker']">
    <xsl:copy-of select="."/>
    <xsl:attribute name="class">world</xsl:attribute>
</xsl:template>

</xsl:stylesheet>