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

XML Schema anyAttribute 元素


XSD <anyAttribute> 元素


<anyAttribute> 元素使我們有能力透過未被schema 規定的屬性來擴展XML 文檔!


<anyAttribute> 元素使我們有能力透過未被 schema 規定的屬性來擴充 XML 文件!

下面的範例是來自名為 "family.xsd" 的 XML schema 的片段。它為我們展示了針對 "person" 元素的一個聲明。透過使用 <anyAttribute> 元素,我們就可以為 "person" 元素添加任意數量的屬性:

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

現在,我們希望透過 "gender" 屬性來擴充 "person" 元素。在這種情況下我們就可以這樣做,即使這個 schema 的作者從未聲明過任何 "gender" 屬性。

請看這個schema 文件,名為"attribute.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:attribute name="gender">
#     <xs:simpleType>
          <xs:restriction base="xs:string">
                <xs:pattern value="male|female"/>
          </xs:restriction>
    </xs:simpleType>
</xs:attribute>

</xs:schema>
##########################################################################################################################

下面這個XML(名為"Myfamily.xml"),使用了來自不同schema 的成分,"family.xsd" 和"attribute.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 attribute.xsd">

<person gender="female">
  <firstname>Hege</firstname>
  <lastname>Refsnes</lastname>
</person>

<person gender="male">
  <firstname>Stale</firstname>
  <lastname>Refsnes</lastname>
</person>

</persons>
##上面這個XML 檔案是有效的,這是因為schema " family.xsd" 允許我們為"person" 元素添加屬性。

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

#