XML Schema complexContent 元素

2018-09-21 03:31 更新

XML Schema complexContent 元素


XML Schema 參考手冊(cè) 完整 XML Schema 參考手冊(cè)

定義和用法

complexContent 元素定義對(duì)復(fù)雜類型(包含混合內(nèi)容或僅包含元素)的擴(kuò)展或限制。

元素信息

  • 父元素: complexType

語法

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

>

(annotation?,(restriction|extension))

</complexContent>

(? 符號(hào)聲明元素可在 complexContent 元素內(nèi)出現(xiàn)零次或一次。)

屬性 描述
id 可選。規(guī)定該元素的唯一的 ID。
mixed 可選。規(guī)定是否允許字符數(shù)據(jù)出現(xiàn)在該 complexType 元素的子元素之間。 默認(rèn)值為 false。
any attributes 可選。規(guī)定帶有 non-schema 命名空間的任何其他屬性。

實(shí)例 1

下面的例子中有一個(gè)復(fù)雜類型 "fullpersoninfo",這個(gè)復(fù)雜類型是通過用三個(gè)補(bǔ)充的元素?cái)U(kuò)展繼承的類型,從另一個(gè)復(fù)雜類型 "personinfo" 衍生而來的:

<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 參考手冊(cè) 完整 XML Schema 參考手冊(cè)
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)