XMLファイルにXSLTを使用して別のXMLファイルに変換しようとしています。 この私のXSLT同じXSLTで異なる一致を持つ複数のテンプレートを使用する方法
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:og="http://og.com"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:fn="http://www.w3.org/2005/xpath-functions"
exclude-result-prefixes="xs fn">
<xsl:output method="xml" encoding="UTF-8" byte-order-mark="no"
indent="yes" />
<xsl:template match="@*|node()">
<xsl:copy><xsl:apply-templates select="@*|node()"/></xsl:copy>
</xsl:template>
<xsl:template match="_source/extension">
<xsl:for-each select="*">
<xsl:element name="MT">
<xsl:attribute name="N" select="name()"/>
<xsl:attribute name="V" select="."/>
</xsl:element>
</xsl:for-each>
</xsl:template>
<xsl:template match="/">
<GSP>
<xsl:attribute name="VER">
<xsl:value-of select="3.2" />
</xsl:attribute>
<xsl:for-each select="root">
<TM>
<xsl:value-of select="(floor(took) div floor(1000))" />
</TM>
<RES>
<M>
<xsl:value-of select="floor(hits/total)" />
</M>
<xsl:for-each select="hits/hits">
<xsl:variable name="var1_resultof_first" as="node()"
select="_source" />
<R>
<xsl:attribute name="N">
<xsl:number format="0" level="single" />
</xsl:attribute>
<U>
<xsl:sequence
select="xs:string(xs:anyURI(fn:string($var1_resultof_first/U)))" />
</U>
<UE>
<xsl:sequence
select="xs:string(xs:anyURI(fn:string($var1_resultof_first/UE)))" />
</UE>
<UD>
<xsl:sequence
select="xs:string(xs:anyURI(fn:string($var1_resultof_first/UD)))" />
</UD>
<T>
<xsl:sequence select="fn:string($var1_resultof_first/T)" />
</T>
<Last-Modified>
<xsl:value-of select="substring-before(_source/submitTime,'T')" />
</Last-Modified>
<S>
<xsl:for-each select="highlight/newContent">
<xsl:sequence select="fn:string(.)" />
</xsl:for-each>
</S>
</R>
</xsl:for-each>
</RES>
</xsl:for-each>
</GSP>
</xsl:template>
</xsl:stylesheet>
である私は私の入力のために、このXSLTを実行したときにそれは
<xsl:template match="_source/extension">
と
<xsl:template match="/">
にマッチする他に一致する2 template.Oneを持っていますが、 XML、上のテンプレートのみが私のXMLに添付されています
<xsl:template match="/">
他の一致(_ソース/一致)は適用されません。同じXSLTで複数のテンプレートを使用できますか?私はここで何かを逃しているかもしれない。
ありがとうございました。私はこれらのリンクを見ていきます。 – Rose