English | Français | >> Deutsch << | Magyar | 中文 | Polski ZVON > Tutorials > XSLT Tutorial
>> Seite 8 << | Zurück | Vor | Inhalt | Element-Index

Eine Vorlage kann mehrere Ergbnisse, anhand einer Liste von Pfaden, produzieren. Die verschiedenen Pfade werden mit "|" getrennt ( XSLT Stylesheet 1 ). Der Platzhalte "*" finde alle M?glichkeiten. Vergleiche XSLT Stylesheet 1 mit XSLT Stylesheet 2 .

XSLT Stylesheet 1

XML Quelltext
<source>

<employee>
     <firstName>Joe</firstName>
     <surname>Smith</surname>
</employee>

</source>

Ausgabe
<div>[template: firstName outputs Joe ]</div>

<div>[template: surname outputs Smith ]</div>

HTML-Ansicht
[template: firstName outputs Joe ]
[template: surname outputs Smith ]
XSLT Stylesheet
<xsl:stylesheet version = '1.0'
     xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:template match="firstName|surname">
     <div>
          <xsl:text>[template: </xsl:text>
          <xsl:value-of select="name()"/>
          <xsl:text> outputs </xsl:text>
          <xsl:apply-templates/>
          <xsl:text> ]</xsl:text>
     </div>
</xsl:template>


</xsl:stylesheet>


XSLT Stylesheet 2

XML Quelltext
<source>

<employee>
     <firstName>Joe</firstName>
     <surname>Smith</surname>
</employee>

</source>

Ausgabe
<div>[template: source outputs
<div>[template: employee outputs
<div>[template: firstName outputs Joe ]</div>

     <div>[template: surname outputs Smith ]</div>
]</div>
]</div>

HTML-Ansicht
[template: source outputs
[template: employee outputs
[template: firstName outputs Joe ]
[template: surname outputs Smith ]
]
]
XSLT Stylesheet
<xsl:stylesheet version = '1.0'
     xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:template match="*">
     <div>
          <xsl:text>[template: </xsl:text>
          <xsl:value-of select="name()"/>
          <xsl:text> outputs </xsl:text>
          <xsl:apply-templates/>
          <xsl:text> ]</xsl:text>
     </div>
</xsl:template>


</xsl:stylesheet>