XML Schema 教學課程login
XML Schema 教學課程
作者:php.cn  更新時間:2022-04-20 14:13:02

XML Schema any 元素


XSD <any> 元素


><any> 元素讓我們有能力透過未被schema 規定的元素來拓展XML 文檔!


h2><any> 元素

<any> 元素讓我們有能力透過未被 schema 規定的元素來拓展 XML 文件!

下面這個例子是從名為 "family.xsd" 的 XML schema 中引用的片段。它展示了一個針對 "person" 元素的聲明。透過使用<any> 元素,我們可以透過任何元素(在<lastname> 之後)擴展"person" 的內容:

<xs:element name="person">
  <xs:complexType>
    <xs:sequence>
      <xs:element name="firstname" type="xs:string"/>
      <xs:element name="lastname" type="xs:string"/>
      <xs:any minOccurs="0"/>
    </xs:sequence>
  </xs:complexType>
</xs:element>

現在,我們希望使用 "children" 元素來擴充 "person" 元素。這這種情況下我們就可以這麼做,即使以上這個 schema 的作者沒有聲明任何 "children" 元素。

請看這個schema 文件,名為"children.xsd":

<?xml version="1.0" encoding="ISO-8859-1"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.w3schools.com"
xmlns="http ://www.w3schools.com"
elementFormDefault="qualified">

<xs:element name="children">
  <xs:complexType>
    <xs:sequence>
      <xs:element name="childname" type="xs:string"
      maxOccurs="unbounded"/>
    </xs:sequence>
  </xs:complexType>
</xs:element>

</xs:schema>

下面這個XML 檔案(名為"Myfamily.xml"),使用了兩個不同的schema 中的成分,"family.xsd" 和"children.xsd":

# <?xml version="1.0" encoding="ISO-8859-1"?>

<persons xmlns="http://www.microsoft.com"
xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.microsoft.com family.xsd
http://www.w3schools.com children .xsd">

<person>
  <firstname>Hege</firstname>
  <lastname>Refsnes</lastname>
  <children>
    <childname>Cecilie</childname>
  </children>
</person>

<person>
  <firstname>Stale</firstname>
  <lastname>Refsnes</lastname>
</person>

</persons>
##上面這個XML 檔案是有效的,這是由於schema " family.xsd" 允許我們透過在"lastname" 元素後的可選元素來擴展"person" 元素。

<any> 和 <anyAttribute> 皆可用於製作可擴充的文件!它們使文件有能力包含未在主 XML schema 中聲明過的附加元素。

#