XSD <anyAttribute> 元素
你還可以使用 <anyAttribute> 元素制作可擴(kuò)展的 XML 文檔,它與 <any> 的擴(kuò)展功能類似,只是針對(duì)屬性進(jìn)行擴(kuò)展。
<anyAttribute> 元素使我們有能力通過(guò)未被 schema 規(guī)定的屬性來(lái)擴(kuò)展 XML 文檔!
<anyAttribute> 元素使我們有能力通過(guò)未被 schema 規(guī)定的屬性來(lái)擴(kuò)展 XML 文檔!
下面的例子是來(lái)自名為 "family.xsd" 的 XML schema 的一個(gè)片段。它為我們展示了針對(duì) "person" 元素的一個(gè)聲明。通過(guò)使用 <anyAttribute> 元素,我們就可以向 "person" 元素添加任意數(shù)量的屬性:
<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>
現(xiàn)在,我們希望通過(guò) "gender" 屬性來(lái)擴(kuò)展 "person" 元素。在這種情況下我們就可以這樣做,即使這個(gè) schema 的作者從未聲明過(guò)任何 "gender" 屬性。
請(qǐng)看這個(gè) schema 文件,名為 "attribute.xsd":
<?xml version="1.0" encoding="ISO-8859-1"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.w3cschools.com"
xmlns="http://www.w3cschools.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>
下面這個(gè) XML(名為 "Myfamily.xml"),使用了來(lái)自不同 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.w3cschools.com attribute.xsd">
<person gender="female">
<firstname>Hege</firstname>
<lastname>Refsnes</lastname>
</person>
<person gender="male">
<firstname>Stale</firstname>
<lastname>Refsnes</lastname>
</person>
</persons>
上面這個(gè) XML 文件是有效的,這是因?yàn)?schema "family.xsd" 允許我們向 "person" 元素添加屬性。
<any> 和 <anyAttribute> 均可用于制作可擴(kuò)展的文檔!它們使文檔有能力包含未在主 XML schema 中聲明過(guò)的附加元素。
更多建議: