XSD <any> 元素

  • 定义和使用

    <any> 元素使我们能够使用该模式未指定的元素来扩展 XML 文档!
  • <any> 元素

    <any> 元素使我们能够使用架构未指定的元素扩展 XML 文档。
    以下示例是 XML 模式 "family.xsd" 的片段。 它显示了对 "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" 元素。 在这种情况下,即使上述方案的作者从未声明任何 "children" 元素,我们也可以这样做。
    查看此模式文件,称为 "children.xsd":
    <?xml version="1.0" encoding="UTF-8"?>
    <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" )使用来自两个不同架构的组件;它们分别来自以下两个模式: "family.xsd" 和 "children.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.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 文件是有效的,因为模式 "family.xsd" 允许我们在 "lastname" 元素之后用可选元素扩展 "person" 元素。
    <any>和<anyAttribute>元素用于制作可扩展文档!它们允许文档包含在主XML模式中未声明的其他元素。