elementFormDefault屬性與命名空間相關(guān),其值可設(shè)置為qualified或unqualified
如果設(shè)置為qualified:
在XML文檔中使用局部元素時(shí),必須使用限定短名作為前綴
sean.xsd:
?xml version="1.0" encoding="UTF-8"?>
xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:sean="http://sean.com"
targetNamespace="http://sean.com"
elementFormDefault="qualified">
xs:element name="book_list">
xs:complexType>
xs:sequence>
xs:element name="book" type="xs:string"/>
/xs:sequence>
/xs:complexType>
/xs:element>
/xs:schema>
sean.xml:
?xml version="1.0" encoding="UTF-8"?>
sean:book_list xmlns:sean="http://sean.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://sean.com sean.xsd">
sean:book>test/sean:book>
/sean:book_list>
如果設(shè)置為unqualified:
在XML文檔中使用局部元素時(shí),可以省略限定短名
sean.xsd:
?xml version="1.0" encoding="UTF-8"?>
xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:sean="http://sean.com"
targetNamespace="http://sean.com"
elementFormDefault="unqualified">
xs:element name="book_list">
xs:complexType>
xs:sequence>
xs:element name="book" type="xs:string"/>
/xs:sequence>
/xs:complexType>
/xs:element>
/xs:schema>
sean.xml:
?xml version="1.0" encoding="UTF-8"?>
sean:book_list xmlns:sean="http://sean.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://sean.com sean.xsd">
book>test/book>
/sean:book_list>
雖然會(huì)間接很多,但是由于去掉了命名空間,所以不是很好理解
類似的屬性還有attributeFormDefault,其規(guī)則與elementFormDefault是一樣的
以上這篇淺談XML Schema中的elementFormDefault屬性就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。
您可能感興趣的文章:- 一個(gè)簡(jiǎn)單的XML Schema的例子
- Spring中XML schema擴(kuò)展機(jī)制的深入講解