XML 架构 list 元素
❮ 完整的 XML 架构参考
定义和用法
列表元素将简单类型元素定义为指定数据类型的值的列表。
元素信息
- 父元素: simpleType
语法
<list
id=ID
itemType=QName
any attributes
>
(annotation?,(simpleType?))
</list>
(? 符号表明该元素可以在列表元素中出现零次或一次)
属性 | 描述 |
---|---|
id | 可选。指定元素的唯一 ID |
itemType | 指定在此或其他模式中定义的内置数据类型或 simpleType 元素的名称。 如果内容包含 simpleType 元素,则不允许使用此属性,否则为必填项 |
any attributes | 可选。 指定具有非模式命名空间的任何其他属性 |
实例 1
以下示例显示了一个简单类型,即整数列表:
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="intvalues" type="valuelist"/>
<xs:simpleType name="valuelist">
<xs:list itemType="xs:integer"/>
</xs:simpleType>
</xs:schema>
The "intvalues" element in a document could look like this (notice that
the list will have five list items):
<intvalues>100 34 56 -23 1567</intvalues>
注释:空格被视为列表项分隔符!
实例 2
以下示例显示了一个简单类型,即字符串列表:
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="stringvalues" type="valuelist"/>
<xs:simpleType name="valuelist">
<xs:list itemType="xs:string"/>
</xs:simpleType>
</xs:schema>
The "stringvalues" element in a document could look like this (notice
that the list will have four list items):
<stringvalues>I love XML Schema</stringvalues>
❮ 完整的 XML 架构参考