JSRUN 用代码说话

restriction 元素

编辑教程

restriction 元素

定义和用法

restriction 元素定义对 simpleType、simpleContent 或 complexContent 定义的约束。

元素信息

父元素: simpleType, simpleContent, complexContent

语法

 <restriction
 id=ID
 base=QName
any attributes
 >

 Content for simpleType:
 (annotation?,(simpleType?,(minExclusive|minInclusive|
 maxExclusive|maxInclusive|totalDigits|fractionDigits|
 length|minLength|maxLength|enumeration|whiteSpace|pattern)*))

 Content for simpleContent:
 (annotation?,(simpleType?,(minExclusive |minInclusive|
 maxExclusive|maxInclusive|totalDigits|fractionDigits|
 length|minLength|maxLength|enumeration|whiteSpace|pattern)*)?,
 ((attribute|attributeGroup)*,anyAttribute?))

 Content for complexContent:
 (annotation?,(group|all|choice|sequence)?,
 ((attribute|attributeGroup)*,anyAttribute?))

 </restriction>

(? 符号声明在 restriction 元素中该元素可出现零次或一次。)

属性 描述
id 可选。规定该元素的唯一的 ID。
base 必需。规定在该 schema(或由指定的命名空间指示的其他 schema)中定义的内建数据类型、simpleType 或 complexType 元素的名称。
any attributes 可选。规定带有 non-schema 命名空间的任何其他属性。

实例

下面的例子定义了一个带有约束且名为 "age" 的元素。age 的值不能小于 0 或大于 100:

 <xs:element name="age">
   <xs:simpleType>
     <xs:restriction base="xs:integer">
       <xs:minInclusive value="0"/>
       <xs:maxInclusive value="100"/>
     </xs:restriction>
   </xs:simpleType>
 </xs:element>

实例 2

本例定义了一个名为 "initials" 的元素。"initials" 元素是带有约束的简单类型。可接受的值是三个从 a 到 z 的大写或小写字母:

 <xs:element name="initials">
   <xs:simpleType>
     <xs:restriction base="xs:string">
       <xs:pattern value="[a-zA-Z][a-zA-Z][a-zA-Z]"/>
     </xs:restriction>
   </xs:simpleType>
 </xs:element>

实例 3

本例定义了一个名为 "password" 元素。"password" 元素是带有约束的简单类型。值必须为最少 5 个字符且最多 8 个字符:

 <xs:element name="password">
   <xs:simpleType>
     <xs:restriction base="xs:string">
       <xs:minLength value="5"/>
       <xs:maxLength value="8"/>
     </xs:restriction>
   </xs:simpleType>
 </xs:element>

实例 4

本例展示了一个使用约束的复杂类型定义。复杂类型 "Chinese_customer" 从一个普通的 customer 复杂类型派生而来,其 country 元素的固定值是 "China":

 <xs:complexType name="customer">
   <xs:sequence>
     <xs:element name="firstname" type="xs:string"/>
     <xs:element name="lastname" type="xs:string"/>
     <xs:element name="country" type="xs:string"/>
   </xs:sequence>
 </xs:complexType>

 <xs:complexType name="Norwegian_customer">
   <xs:complexContent>
     <xs:restriction base="customer">
       <xs:sequence>
         <xs:element name="firstname" type="xs:string"/>
         <xs:element name="lastname" type="xs:string"/>
         <xs:element name="country" type="xs:string" fixed="Norway"/>
       </xs:sequence>
     </xs:restriction>
   </xs:complexContent>
 </xs:complexType>
JSRUN闪电教程系统是国内最先开创的教程维护系统, 所有工程师都可以参与共同维护的闪电教程,让知识的积累变得统一完整、自成体系。 大家可以一起参与进共编,让零散的知识点帮助更多的人。
X
支付宝
9.99
无法付款,请点击这里
金额: 0
备注:
转账时请填写正确的金额和备注信息,到账由人工处理,可能需要较长时间
如有疑问请联系QQ:565830900
正在生成二维码, 此过程可能需要15秒钟