私は古いxslファイルを見て、元の作者が<xsl:template>
要素の数をというように定義した理由を理解しようとしています。にはmatch
属性が含まれています。私の質問以下の例では<xsl:template match="title" />
に関しては次のようになります。自己閉鎖xsl:templateタグ?
XML
<?xml version="1.0" encoding="UTF-8"?>
<catalog>
<cd>
<title>Empire Burlesque</title>
<artist>Bob Dylan</artist>
<country>USA</country>
<company>Columbia</company>
<price>10.90</price>
<year>1985</year>
</cd>
</catalog>
XSL
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<h2>My CD Collection</h2>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
<xsl:template match="cd">
<p>
<xsl:apply-templates select="title"/>
<xsl:apply-templates select="artist"/>
</p>
</xsl:template>
<xsl:template match="title" />
<xsl:template match="artist">
Artist: <span style="color:#00ff00">
<xsl:value-of select="."/></span>
<br />
</xsl:template>
</xsl:stylesheet>
タグが自動閉鎖しているので、何も内容が明らかに存在しません<xsl:template \>
にあります。これは何がポイントですか?これは、一致属性を介してtemplate
に関連付けられたXMLデータを「非表示」する手法ですか?