我正在尝试使用 xsl:key 使用 XSL document() 函数在外部 XML 文档中查找项目。如果我不使用 document(),而是合并两个 XML 文件(在 C# 中使用 XmlDocument),我就可以让 xsl:key 部分工作。但是,这两个 XML 文件都非常大,在某些情况下我开始出现“内存不足”错误。我还需要能够使用 xls:key,否则这个过程需要几个小时。
在 XSLT 2.0 中,我相信你可以这样做:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:variable name="lookupDoc" select="document('CodeDescriptions.xml')" />
<xsl:key name="LookupDescriptionByCode" match="Code/@description" use="../@code" />
<xsl:template match="ItemCode">
<xsl:call-template name="MakeSpanForCode">
<xsl:with-param name="code" select="text()" />
</xsl:call-template>
</xsl:template>
<xsl:template name="MakeSpanForCode">
<xsl:param name="code" />
<xsl:element name="span">
<xsl:attribute name="title">
<xsl:value-of select="$lookupDoc/key('LookupDescriptionByCode', $code)" />
</xsl:attribute>
<xsl:value-of select="$code" />
</xsl:element>
</xsl:template>
</xsl:stylesheet>
但是,您如何在 XSLT 1.0 中实现这一点?