I. 使用键和current()
:)的另一种解决方案:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:key name="kItemByProp" match="item"
use="boolean(/*/properties/property/@id
[contains(concat(' ', current()/@properties, ' '),
.)]
)"/>
<xsl:template match=
"item[count(.| key('kItemByProp', 'true'))
=
count(key('kItemByProp', 'true'))
]
">
<xsl:copy-of select="."/>
</xsl:template>
</xsl:stylesheet>
当此转换应用于提供的 XML 文档时:
<t>
<items>
<item id='a' properties='red little' />
<item id='b' properties='big strong heavy' />
<item id='c' properties='blue heavy' />
</items>
<properties>
<property id='red' />
<property id='little' />
<property id='blue' />
</properties>
</t>
产生了想要的正确结果:
<item id="a" properties="red little"/>
<item id="c" properties="blue heavy"/>
二、没有键,但有一个条件指令作为模板主体的最外层:
<xsl:template match="item">
<xsl:if test=
"/*/properties/*/@id
[contains(concat(' ', current()/@properties, ' '), .)]">
<!-- Your processing here -->
</xsl:if>
</xsl:template>
这是一个完整的转换:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="item">
<xsl:if test=
"/*/properties/*/@id
[contains(concat(' ', current()/@properties, ' '), .)]">
<xsl:copy-of select="."/>
</xsl:if>
</xsl:template>
</xsl:stylesheet>
当此转换应用于同一个 XML 文档(如上)时,会产生相同的正确结果:
<item id="a" properties="red little"/>
<item id="c" properties="blue heavy"/>