XML Schema all 元素
XML Schema all 元素规定子元素能够以任意顺序出现,每个子元素可出现零次或一次
<all id=ID maxOccurs=1 minOccurs=0|1 *any attributes* >(annotation?,element*)</all>
? 符号声明该元素可出现零次或一次
* 符号声明该元素可在所有元素中出现零次或多次
属性
属性 | 描述 |
---|---|
id | 可选。该元素的唯一标识符 |
maxOccurs | 可选。元素可出现的最大次数。 该值必须是 1 |
minOccurs | 可选。元素可出现的最小次数。 该值可以是整数 0 或 1。若要指定该元素是可选的,请将该属性设置为 0。 默认值为 1 |
any attributes | 可选。规定带有 non-schema 命名空间的任何其他属性 |
元素信息
- 父元素: group, complexType, restriction (both simpleContent and complexContent), extension (both simpleContent and complexContent)
范例 1
<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>
上面的范例指示 "firstname" 和 "lastname" 元素能够以任何顺序出现,两个元素都必须且只能出现一次
范例 2
<xs:element name="person"> <xs:complexType> <xs:all minOccurs="0"> <xs:element name="firstname" type="xs:string"/> <xs:element name="lastname" type="xs:string"/> </xs:all> </xs:complexType> </xs:element>
上面的范例指示 "firstname" 和 "lastname" 元素能够以任何顺序出现,每个元素都能出现零次或一次