DTD及Schema的使用中一些小的问题及解决方案

前端之家收集整理的这篇文章主要介绍了DTD及Schema的使用中一些小的问题及解决方案前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

DTD

元素出现个数:

?: 0-1

* : 0-n

+ :1-n

Schema:

无序Children的实现,可以用all或者choice

区别:

all每个元素只能出现最少0次,最多1次

choice每个元素最多可以出现n次,最少0次

简单元素的attribute属性

例如:<text name="hello" type="string">HelloWorld</text>

Schema的实现是:

<element name="text" minOccurs="0">
	<complexType>
		<simpleContent>
			<extension base="string">
				<attribute name="name" type="string" />
				<attribute name="type" type="string" />
			</extension>
		</simpleContent>
	</complexType>
</element>
原文链接:https://www.f2er.com/xml/300602.html

猜你在找的XML相关文章