微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Webservice_06_schema元素简介

感谢孙浩老师的视频和资料。

schema:

<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.example.org/2"
	xmlns:tns="http://www.example.org/2" elementFormDefault="qualified">
	<element name="books">
		<complexType>
			<sequence maxOccurs="unbounded">
				<element name="book">
					<complexType>
						<sequence>
							<element name="title" type="string"></element>
							<choice>
								<element name="author" type="string"></element>
								<element name="authors">
									<complexType>
										<sequence maxOccurs="3">
											<element name="author" type="string"></element>
										</sequence>
									</complexType>
								</element>
							</choice>
							<element name="content" type="string"></element>
						</sequence>
					</complexType>
				</element>
			</sequence>
		</complexType>
	</element>
</schema>


 

 

xml:

 

<?xml version="1.0" encoding="UTF-8"?>
<books xmlns="http://www.example.org/2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="2.xsd">
	<book>
		<title>Java for Android</title>
		<author>Jeff Friesen</author>
		<content>Android Apps with Eclipse</content>
	</book>
	<book>
		<title>Head First jQuery</title>
		<authors>
			<author>Jim Doran</author>
			<author>Paul Barry</author>
		</authors>
		<content> computing at the Institute</content>
	</book>
</books>


 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐