最新的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模式中声明的附加元件。