これまでスキーマを使用したことがありません。今回は、xml ファイルに名前空間とスキーマを追加して、xslt こんなに手間がかかるとは思いませんでした。では、正しく動作した結果を記録します。
まず、私が計画している XML ファイルを見てみましょう。 Web ページのメニューを定義するために使用します。
<?xml version="1.0" encoding="GB2312"?> <menu_items> <menu_item href="index.html" image="images/A1.gif" name="首页"/> <menu_item href="ep.html" image="images/A2.gif" name="新闻"> <menu_item href="ep.html" image="images/A2.gif" name="国内新闻"/> </menu_item> </menu_items>
回り道はさておき、xmlspy の Generate Schema 機能を使用してスキーマ ファイルを自動的に生成し、結果は次のようになります。
<?xml version="1.0" encoding="GB2312"?> <xs:schema xmlns="http://www.hz-sp.com/2005/XMLSchema-menu" xmlns:xs=" targetNamespace="http://www.hz-sp.com/2005/XMLSchema-menu"> <xs:element name="menu_item"> <xs:complexType> <xs:sequence> <xs:element ref="menu_item" minOccurs="0"/> </xs:sequence> <xs:attribute name="name" type="xs:string" use="required"/> <xs:attribute name="href" type="xs:anyURI" use="optional"/> <xs:attribute name="image" type="xs:anyURI" use="optional"/> </xs:complexType> </xs:element> <xs:element name="menu_items"> <xs:complexType> <xs:sequence> <xs:element ref="menu_item" maxOccurs="unbounded"/> </xs:sequence> </xs:complexType> </xs:element> </xs:schema>
その中で、xmlspy のスキーマ割り当て機能を使用して xml で指定します。この xsd では、xml のルート ノード menu_items は次のとおりです。
<menu_items xmlns="http://www.hz-sp.com/2005/XMLSchema-menu" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.hz-sp.com/2005/XMLSchema-menu menu.xsd">
次に、xslt ファイルを作成します。これも正しい結果のみを返します。 :
<?xml version="1.0" encoding="GB2312"?> <xsl:stylesheet xpath-default-namespace="http://www.hz-sp.com/2005/XMLSchema-menu" version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2004/07/xpath-functions" xmlns:xdt="http://www.w3.org/2004/07/xpath-datatypes" xmlns="http://www.w3.org/1999/xhtml">> <xsl:output encoding="GB2312" indent="yes" method="html" version="4.0"/> <xsl:template match="mm:menu_items" xmlns:mm="http://www.hz-sp.com/2005/XMLSchema-menu"> <table width="900" border="0" cellspacing="0" cellpadding="0"> <tr> <xsl:for-each select="mm:menu_item"> <a href="{@href}"> <img src="{@image}" width="113" height="57" border="0"/> </a> </xsl:for-each> </tr> </table> </xsl:template> </xsl:stylesheet>
迷惑なことに、
xpath-default-namespace="http://www.hz-sp.com/2005/XMLSchema-menu"
は xsl:template の一致には影響しません。一致は xpath ではないと推定されますが、この 属性 は for-each の選択にも影響を及ぼしません。これは奇妙です。 . この属性の使い方をまだ理解していないようです
以上がxml、スキーマ、xsltを同時に使用するサンプルコードの詳細な紹介の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。