用xslt转换属性

时间:2019-07-04 09:44:07

标签: xml xslt xpath

这是我第二天使用XSLT,所以我是一个新手。现在,我想在计算中使用我的属性。

我要编辑的XML如下:

<position x="106" y="47" zIndex="6" width="30" height="5"/>
<position x="106" y="56" zIndex="7" width="30" height="5"/>
<position x="106" y="66" zIndex="8" width="30" height="5"/>
<position x="106" y="75" zIndex="9" width="30" height="5"/>

我的XSLT代码如下:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
    <xsl:template match="node() | @*">
        <xsl:copy>
            <xsl:apply-templates select="node() | @*"/>
        </xsl:copy>
    </xsl:template>
    <xsl:template match="@x[parent::position]">
        <xsl:attribute name="x">
            <xsl:value-of select="sum((@x, 1000))"/>
        </xsl:attribute>
    </xsl:template>
</xsl:stylesheet>

因此,在此代码示例中,我想将x属性增加1000,但只是将它们设置为1000。 编辑:我希望能够至少使用所有数值计算和条件(指的是当前x值),例如:==; !=; >=; =<; ...

1 个答案:

答案 0 :(得分:1)

您想要的表情是这个...

<xsl:value-of select="sum((., 1000))"/>

.代表当前匹配项(x属性)。进行@x会在当前的x属性上寻找一个x属性,而该属性将不存在。

尽管如此,您可以在这种情况下执行此操作。...

<xsl:value-of select=". + 1000"/>

请注意,您也可以像这样简化模板匹配

<xsl:template match="position/@x">
    <xsl:attribute name="x">
        <xsl:value-of select=". + 1000"/>
    </xsl:attribute>
</xsl:template>

如果您确实在使用XSLT 2.0,则可以将其简化为:

<xsl:template match="position/@x">
    <xsl:attribute name="x" select=". + 1000"/>
</xsl:template>

注意,要为比赛添加条件,请使用方括号,例如...

<xsl:template match="position/@x[. &lt; 1000]">