我們可以控制如何元件與指標的文件中使用。
指標
有七項指標:
訂單指標:
- All
- Choice
- Sequence
出現指標:
- maxOccurs
- minOccurs
組指標:
- Group name
- attributeGroup name
訂單指標
順序指示器被用來定義該元素的順序。
所有指示燈
所述<all>指示符指示子元素可以以任何順序出現,並且每個子元素必須只出現一次:
<xs:element name="person">
<xs:complexType>
<xs:all>
<xs:element name="firstname" type="xs:string"/>
<xs:element name="lastname" type="xs:string"/>
</xs:all>
</xs:complexType>
</xs:element>
Note:當使用<all>的指標可以設定<minOccurs>指標為0或1, <maxOccurs>指標只能被設置為1( <minOccurs>和<maxOccurs>稍後介紹)。
指標的選擇
在<choice>的指標規定,任何一個子元素或其他可能發生:
<xs:element name="person">
<xs:complexType>
<xs:choice>
<xs:element name="employee" type="employee"/>
<xs:element name="member" type="member"/>
</xs:choice>
</xs:complexType>
</xs:element>
序指示器
在<sequence>指示指定子元素必須出現在一個特定的順序:
<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:complexType>
</xs:element>
出現指示符
發生指標用來定義如何常可發生的元件。
Note:對於所有的"Order"和"Group"指標(任何,所有,選擇,順序,組名和組參考)maxOccurs的默認值的minOccurs為1。
maxOccurs的指示器
在<maxOccurs>指示指定的時間可能會出現一個元素的最大數量:
<xs:element name="person">
<xs:complexType>
<xs:sequence>
<xs:element name="full_name" type="xs:string"/>
<xs:element name="child_name" type="xs:string" maxOccurs="10"/>
</xs:sequence>
</xs:complexType>
</xs:element>
上面的例子表明"child_name"元素可出現的最小的一個時間(的minOccurs的默認值為1),並在最多十次"person"的元素。
的minOccurs指示器
在<minOccurs>指示指定的時間可能會出現一個元素的最小數量:
<xs:element name="person">
<xs:complexType>
<xs:sequence>
<xs:element name="full_name" type="xs:string"/>
<xs:element name="child_name" type="xs:string"
maxOccurs="10" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
上面的例子表明"child_name"元素可出現最小值0倍,並在最多十次"person"的元素。
Tip:要允許一個元素出現的次數不限,可使用的maxOccurs =“無界”的語句:
A working example:
所謂的XML文件"Myfamily.xml"
<?xml version="1.0" encoding="UTF-8"?>
<persons xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="family.xsd">
<person>
<full_name>Hege Refsnes</full_name>
<child_name>Cecilie</child_name>
</person>
<person>
<full_name>Tove Refsnes</full_name>
<child_name>Hege</child_name>
<child_name>Stale</child_name>
<child_name>Jim</child_name>
<child_name>Borge</child_name>
</person>
<person>
<full_name>Stale Refsnes</full_name>
</person>
</persons>
上面的XML文件包含一個名為根元素"persons" 。 這個根元素中,我們定義了三個"person"因素。 每個"person"元素必須包含一個"full_name"元素,它可以包含多達五"child_name"元素。
下面是schema文件"family.xsd"
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified">
<xs:element name="persons">
<xs:complexType>
<xs:sequence>
<xs:element name="person" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="full_name" type="xs:string"/>
<xs:element name="child_name" type="xs:string"
minOccurs="0" maxOccurs="5"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
組指標
組指標被用來定義相關集元素。
元素組
元組與組的聲明,這樣的定義:
<xs:group name="groupname">
...
</xs:group>
你必須定義一個所有,選擇,或序列組聲明中的元素。 下面的例子定義了一個組"persongroup"定義一組必須發生在一個確切的序列元素:
<xs:group name="persongroup">
<xs:sequence>
<xs:element name="firstname" type="xs:string"/>
<xs:element name="lastname" type="xs:string"/>
<xs:element name="birthday" type="xs:date"/>
</xs:sequence>
</xs:group>
您已經定義了一個組後,您可以參考它的另一個定義,如下所示:
<xs:group name="persongroup">
<xs:sequence>
<xs:element name="firstname" type="xs:string"/>
<xs:element name="lastname" type="xs:string"/>
<xs:element name="birthday" type="xs:date"/>
</xs:sequence>
</xs:group>
<xs:element name="person" type="personinfo"/>
<xs:complexType name="personinfo">
<xs:sequence>
<xs:group ref="persongroup"/>
<xs:element name="country" type="xs:string"/>
</xs:sequence>
</xs:complexType>
屬性組
屬性組與attributeGroup聲明,這樣的定義:
<xs:attributeGroup name="groupname">
...
</xs:attributeGroup>
下面的示例定義一個名為屬性組"personattrgroup"
<xs:attributeGroup name="personattrgroup">
<xs:attribute name="firstname" type="xs:string"/>
<xs:attribute name="lastname" type="xs:string"/>
<xs:attribute name="birthday" type="xs:date"/>
</xs:attributeGroup>
您已經定義了一個屬性組後,您可以參考它的另一個定義,如下所示:
<xs:attributeGroup name="personattrgroup">
<xs:attribute name="firstname" type="xs:string"/>
<xs:attribute name="lastname" type="xs:string"/>
<xs:attribute name="birthday" type="xs:date"/>
</xs:attributeGroup>
<xs:element name="person">
<xs:complexType>
<xs:attributeGroup ref="personattrgroup"/>
</xs:complexType>
</xs:element>