A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. 下面是xml文件
复制代码
下面是XSchema语法的xsd文件
  1. <?xml version="1.0" encoding="UTF-8"?>

  2. <schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
  3.         targetNamespace="http://www.example.org/shiporder"
  4.         elementFormDefault="qualified">

  5.         <xs:element name="shiporder">
  6.                 <xs:complexType>
  7.                         <xs:sequence>
  8.                                 <xs:element name="orderperson" type="xs:string" />
  9.                                 <xs:element name="shipto">
  10.                                         <xs:complexType>
  11.                                                 <xs:sequence>
  12.                                                         <xs:element name="name" type="xs:string" />
  13.                                                         <xs:element name="address" type="xs:string" />
  14.                                                         <xs:element name="city" type="xs:string" />
  15.                                                         <xs:element name="country" type="xs:string" />
  16.                                                 </xs:sequence>
  17.                                         </xs:complexType>
  18.                                 </xs:element>
  19.                                 <xs:element name="item" maxOccurs="unbounded">
  20.                                         <xs:complexType>
  21.                                                 <xs:sequence>
  22.                                                         <xs:element name="title" type="xs:string" />
  23.                                                         <xs:element name="note" type="xs:string"
  24.                                                                 minOccurs="0" />
  25.                                                         <xs:element name="quantity"
  26.                                                                 type="xs:positiveInteger" />
  27.                                                         <xs:element name="price" type="decimal" />
  28.                                                 </xs:sequence>
  29.                                         </xs:complexType>
  30.                                 </xs:element>
  31.                         </xs:sequence>
  32.                         <xs:attribute name="orderid" type="xs:string"
  33.                                 use="required" />
  34.                 </xs:complexType>
  35.         </xs:element>
  36. </schema>
复制代码
就是不能约束xml文件,不知道哪里错了,求大神指导,谢谢了、、、

评分

参与人数 1技术分 +1 收起 理由
黄文伯 + 1 表示没学到不知道唉

查看全部评分

1 个回复

倒序浏览
亲,如问题已解决请将分类的“未解决”改为“已解决”。
以后的问题贴也要及时更改分类哦~
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马