Latest web development tutorials

XML Schema 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 中聲明過的附加元素。