加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

Webservice_06_schema元素简介

发布时间:2020-12-17 00:12:31 所属栏目:安全 来源:网络整理
导读:感谢 孙浩 老师的视频和资料。 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

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

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>


?

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读