以文本方式查看主题 - 中文XML论坛 - 专业的XML技术讨论区 (http://bbs.xml.org.cn/index.asp) -- 『 DTD/XML Schema 』 (http://bbs.xml.org.cn/list.asp?boardid=23) ---- 各位大哥,帮小弟看看这个XMLSchema中的unique问题 (http://bbs.xml.org.cn/dispbbs.asp?boardid=23&rootid=&id=40960) |
-- 作者:tanyekai -- 发布时间:12/7/2006 4:44:00 PM -- 各位大哥,帮小弟看看这个XMLSchema中的unique问题 schema文件 <?xml version="1.0" encoding="gb2312"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3schools.com" targetNamespace="http://www.w3schools.com" elementFormDefault="qualified"> <!--简单元素--> <xs:simpleType name="stID"> <xs:restriction base="xs:int"/> </xs:simpleType> <xs:simpleType name="stRealName"> <xs:restriction base="xs:string"> <xs:minLength value="1"/> <xs:maxLength value="16"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="stSex"> <xs:restriction base="xs:string"> <xs:pattern value="male|female"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="stCity"> <xs:restriction base="xs:string"> <xs:minLength value="4"/> <xs:maxLength value="32"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="stBirthday"> <xs:restriction base="xs:date"/> </xs:simpleType> <xs:simpleType name="stMarry"> <xs:restriction base="xs:string"> <xs:pattern value="yes|no"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="stIncome"> <xs:restriction base="xs:int"/> </xs:simpleType> <!-- 只含有简单内容(文本和属性)--> <xs:complexType name="ctRealName"> <xs:simpleContent> <xs:extension base="stRealName"> <xs:attribute name="hide" type="xs:string" use="required"/> </xs:extension> </xs:simpleContent> </xs:complexType> <xs:complexType name="ctBirthday"> <xs:simpleContent> <xs:extension base="stBirthday"> <xs:attribute name="hide" type="xs:string" use="required"/> </xs:extension> </xs:simpleContent> </xs:complexType> <xs:complexType name="ctCity"> <xs:simpleContent> <xs:extension base="stCity"> <xs:attribute name="hide" type="xs:string" use="required"/> </xs:extension> </xs:simpleContent> </xs:complexType> <xs:complexType name="ctDegree"> <xs:simpleContent> <xs:extension base="stDegree"> <xs:attribute name="hide" type="xs:string" use="required"/> </xs:extension> </xs:simpleContent> </xs:complexType> <xs:complexType name="ctIncome"> XML文件
|
-- 作者:tanyekai -- 发布时间:12/7/2006 5:31:00 PM -- 没人回贴,55555 兄弟,帮帮忙 |
-- 作者:gemingke -- 发布时间:3/19/2007 9:30:00 PM -- 你想达到什么效果? |
W 3 C h i n a ( since 2003 ) 旗 下 站 点 苏ICP备05006046号《全国人大常委会关于维护互联网安全的决定》《计算机信息网络国际联网安全保护管理办法》 |
6,156.250ms |