我有以下 XML:
<?xml version="1.0" encoding="UTF-8"?>
<XmlTest>
<Pictures attr="Pic1">Picture 1</Pictures>
<Pictures attr="Pic2">Picture 2</Pictures>
<Pictures attr="Pic3">Picture 3</Pictures>
</XmlTest>
虽然这个 XSL 做了预期的事情(输出第一张图片的 attr):
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/XmlTest">
<xsl:variable name="FirstPicture" select="Pictures[1]">
</xsl:variable>
<xsl:value-of select="$FirstPicture/@attr"/>
</xsl:template>
</xsl:stylesheet>
似乎不可能在使用 xsl:copy-of 的变量声明中做同样的事情:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >
<xsl:template match="/XmlTest">
<xsl:variable name="FirstPicture">
<xsl:copy-of select="Pictures[1]"/>
</xsl:variable>
<xsl:value-of select="$FirstPicture/@attr"/>
</xsl:template>
</xsl:stylesheet>
好奇:如果我在第二个示例中只选择“$FirstPicture”而不是“$FirstPicture/@attr”,它会按预期输出图片1的文本节点......
在你们都建议我重写代码之前:这只是一个简化的测试,我的真正目的是使用命名模板将一个节点选择到变量 FirstPicture 中,并将其重用于进一步的选择。
我希望有人可以帮助我理解这种行为,或者可以建议我一种正确的方法来选择一个具有易于重用的代码的节点(在我的实际应用程序中,哪个节点是第一个节点的决定很复杂)。谢谢。
编辑(感谢 Martin Honnen): 这是我的工作解决方案示例(它另外使用单独的模板来选择请求的图片节点),使用 MS XSLT 处理器:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt"
version="1.0">
<xsl:template match="/XmlTest">
<xsl:variable name="FirstPictureResultTreeFragment">
<xsl:call-template name="SelectFirstPicture">
<xsl:with-param name="Pictures" select="Pictures" />
</xsl:call-template>
</xsl:variable>
<xsl:variable name="FirstPicture" select="msxsl:node-set($FirstPictureResultTreeFragment)/*"/>
<xsl:value-of select="$FirstPicture/@attr"/>
<!-- further operations on the $FirstPicture node -->
</xsl:template>
<xsl:template name="SelectFirstPicture">
<xsl:param name="Pictures"/>
<xsl:copy-of select="$Pictures[1]"/>
</xsl:template>
</xsl:stylesheet>
不好,在 XSLT 1.0 中不能直接从模板输出节点,但使用额外的变量至少不是不可能的。