浅谈XML Schema中的elementFormDefault属性

网络编程 2021-07-05 11:35www.168986.cn编程入门
狼蚁网站SEO优化长沙网络推广就为大家带来一篇浅谈XML Schema中的elementFormDefault属性。长沙网络推广觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随长沙网络推广过来看看吧

elementFormDefault属性与命名空间相关,其值可设置为qualified或unqualified

如果设置为qualified

在XML文档中使用局部元素时,必须使用限定短名作为前缀

sean.xsd

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://.w3./2001/XMLSchema"
 xmlns:sean="http://sean."
 targetNamespace="http://sean."
 elementFormDefault="qualified">
 <xs:element name="book_list">
 <xs:plexType>
 <xs:sequence>
 <xs:element name="book" type="xs:string"/>
 </xs:sequence>
 </xs:plexType>
 </xs:element>
</xs:schema>

sean.xml

<?xml version="1.0" encoding="UTF-8"?>
<sean:book_list xmlns:sean="http://sean." 
 xmlns:xsi="http://.w3./2001/XMLSchema-instance" 
 xsi:schemaLocation="http://sean. sean.xsd">
 <sean:book>test</sean:book>
</sean:book_list>

如果设置为unqualified

在XML文档中使用局部元素时,可以省略限定短名

sean.xsd

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://.w3./2001/XMLSchema"
 xmlns:sean="http://sean."
 targetNamespace="http://sean."
 elementFormDefault="unqualified">
 <xs:element name="book_list">
 <xs:plexType>
 <xs:sequence>
 <xs:element name="book" type="xs:string"/>
 </xs:sequence>
 </xs:plexType>
 </xs:element>
</xs:schema>

sean.xml

<?xml version="1.0" encoding="UTF-8"?>
<sean:book_list xmlns:sean="http://sean." 
 xmlns:xsi="http://.w3./2001/XMLSchema-instance" 
 xsi:schemaLocation="http://sean. sean.xsd">
 <book>test</book>
</sean:book_list>

虽然会间接很多,由于去掉了命名空间,所以不是很好理解

类似的属性还有attributeFormDefault,其规则与elementFormDefault是一样的

以上这篇浅谈XML Schema中的elementFormDefault属性就是长沙网络推广分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持狼蚁SEO。

Copyright © 2016-2025 www.168986.cn 狼蚁网络 版权所有 Power by