我有类似的xml:
<a>
<b attr1="1" attr2="2" attr3="3"></b>
</a>
如果attr1存在或不为空,我需要将attr2的值更改为22,并将生成的xml存储到变量中。
现在我有这样的事情:
<xsl:variable name="bla">
<xsl:choose>
<xsl:when test="b/@attr1 or b/@attr1 != ''">
true
</xsl:when>
<xsl:otherwise>
false
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:variable name="blabla">
<xsl:choose>
<xsl:when test="$bla">
<xsl:call-template name="ggg">
<xsl:with-param name="ccc" select="b"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="b"/>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
</xsl:choose>
</xsl:variable>
<xsl:template name="ggg">
<xsl:param name="ccc"/>
<xsl:copy-of select="@*" />
<xsl:attribute name="attr2">22</xsl:attribute>
<xsl:copy-of select="node()" />
</xsl:template>
但它没有用,我想我的方向错了。
请帮忙。
----更新---- 期望的输出:
<a>
<b attr1="1" attr2="22" attr3="3"></b>
</a>
它应该存储到变量中,因为我需要再次传递它。
答案 0 :(得分:0)
您可以使用它(XSLT 1.0):
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="b/@attr2">
<xsl:attribute name="attr2">
<xsl:choose>
<xsl:when test="../@attr1">22</xsl:when>
<xsl:otherwise>
<xsl:value-of select="."/>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
</xsl:template>
</xsl:stylesheet>
或XSLT 2.0(更简洁):
<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="b/@attr2">
<xsl:attribute name="attr2"
select="if (exists(../@attr1)) then 22 else ."/>
</xsl:template>
</xsl:stylesheet>
您可以使用全局变量来存储它以供以后使用。在这种情况下,您只需添加以下内容:
<xsl:variable name="blabla" select="/a/b/@attr1"/>
作为xsl:stylesheet
的孩子,假设/a/b/@attr1
节点是唯一的。在您的示例中,问题是选择b/@attr1
不会选择任何内容,因为默认上下文是全局变量中的根(/
)。