最新的Web開發教程
 

XSD的<anyAttribute> Element


<anyAttribute>元素使我們能夠擴展與未被schema指定的屬性在XML文檔!


<anyAttribute>元素

<anyAttribute>元素使我們能夠擴展與未被schema指定的屬性的XML文檔。

下面的例子是所謂的XML模式片段"family.xsd" 它顯示了一個聲明, "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>

現在我們要擴大"person"與元素"gender"屬性。 在這種情況下,我們可以這樣做,即使上面從來沒有架構的作者宣稱任何"gender"屬性。

看看這個架構文件,名為"attribute.xsd"

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.w3ii.com"
xmlns="http://www.w3ii.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文件(called "Myfamily.xml")使用兩個不同的架構組件; "family.xsd""attribute.xsd"

<?xml version="1.0" encoding="UTF-8"?>

<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.w3ii.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文件是有效的,因為模式"family.xsd"可以讓我們的屬性添加到"person"因素。

<any><anyAttribute>元素被用來製造可擴展的文件! 他們允許文檔包含未在主體的XML模式中聲明的附加元件。