schema约束

2019-03-21  本文已影响0人  丫甘九

1、 schmea约束

2、schema快速入门

属性 
xmlns="http://www.w3.org/2001/XMLSchema" 
targetNamespace="http://www.itcast.cn/20151111"
elementFormDefault="qualified"
<complexType>
             <sequence>
                    <子元素>
             </sequence>
        </complexType>

(3)简单元素,写在复杂元素的里面

<element name="person">
        <complexType>
             <sequence>
                     <element name="name" type="string"></element>
                     <element name="age" type="int"></element>
             </sequence>
        </complexType>
   </element>

(4)在被约束文件里面引入约束条件

<person xmlns:xsi="http:/www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.itcast.cn/20151111"
xsi:schemaLocation="http://www.itcast.cn/20151111 1.xsd">
xmlns:xsi="http:/www.w3.org/2001/XMLSchema-instance
xmlns="http://www.itcast.cn/20151111"
xsi:schemaLocation="http://www.itcast.cn/20151111 1.xsd"
上一篇 下一篇

猜你喜欢

热点阅读