最新的Web开发教程
 

XML架构列表元素


<XML Schema参考手册

定义和用法

列表元素定义一个简单类型元件作为指定数据类型的值的列表。

元素信息

  • Parent elements:简单类型

句法

<list
id=ID
itemType=QName
any attributes
>

(annotation?,(simpleType?))

</list>

(?符号声明元素可出现零次或一次列表元素中)

属性 描述
id 可选的。 指定一个唯一的ID为元素
itemType

指定在这个或另一个模式定义的内置数据类型或simpleType元素的名称。 如果内容包含simpleType元素此属性是不允许的,否则是必需的

any attributes 可选的。 规定带有non-schema命名空间的任何其他属性。

例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>

Note:空格被视为列表项分隔符!

例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 Schema参考手册