XSD 空元素
空复杂元素不能包含内容,只能包含属性。
复杂空元素
一个空的 XML 元素
<product prodid="1345" />
上面的 "product" 元素没有任何内容。要定义一个没有内容的类型,我们必须定义一个允许其内容中包含元素的类型,但我们实际上没有声明任何元素,如下所示
<xs:element name="product">
<xs:complexType>
<xs:complexContent>
<xs:restriction base="xs:integer">
<xs:attribute name="prodid" type="xs:positiveInteger"/>
</xs:restriction>
</xs:complexContent>
</xs:complexType>
</xs:element>
在上面的示例中,我们定义了一个带有复杂内容的复杂类型。complexContent 元素表示我们打算限制或扩展复杂类型的 content model,而 integer 的限制声明了一个属性,但没有引入任何元素内容。
但是,可以更紧凑地声明 "product" 元素,如下所示
<xs:element name="product">
<xs:complexType>
<xs:attribute name="prodid" type="xs:positiveInteger"/>
</xs:complexType>
</xs:element>
或者你可以为 complexType 元素命名,并让 "product" 元素有一个 type 属性,该属性引用 complexType 的名称(如果你使用这种方法,多个元素可以引用同一个复杂类型)
<xs:element name="product" type="prodtype"/>
<xs:complexType name="prodtype">
<xs:attribute name="prodid" type="xs:positiveInteger"/>
</xs:complexType>