最新的Web开发教程
 

XML架构复杂内容元素


<XML Schema参考手册

定义和用法

在复杂内容元素定义一个复杂类型,包含混合内容或仅元素扩展或限制。

元素信息

  • Parent elements:复杂类型

句法

<complexContent
id=ID
mixed=true|false
any attributes

>

(annotation?,(restriction|extension))

</complexContent>

(?符号声明元素可出现零次或一次的复杂内容元素中)

属性 描述
id 可选的。 指定一个唯一的ID为元素
mixed 可选的。 指定字符数据是否允许此complexType元素的子元素之间出现。 默认为false
any attributes 可选的。 规定带有non-schema命名空间的任何其他属性。

例1

下面的例子有一个复杂类型, "fullpersoninfo"从另一个复杂类型,导出"personinfo"通过扩展继承的类型与另外三个要素(address, city and country)

<xs:element name="employee" type="fullpersoninfo"/>

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

<xs:complexType name="fullpersoninfo">
  <xs:complexContent>
    <xs:extension base="personinfo">
      <xs:sequence>
        <xs:element name="address" type="xs:string"/>
        <xs:element name="city" type="xs:string"/>
        <xs:element name="country" type="xs:string"/>
      </xs:sequence>
    </xs:extension>
  </xs:complexContent>
</xs:complexType>

在上面的例子中"employee"元素必须包含在顺序下列元素: "firstname""lastname""address""city""country"


<XML Schema参考手册