为什么不这样呢?
<Books>
<book>
<title>西游记</title>
<author>吴承恩</author>
<price>100</price>
</book>
<book>
<title>西游记</title>
<author>吴承恩</author>
<price>100</price>
</book>
</Books>
怎么样写都行,你说的“架构定义”是什么意思。
title 是 book 的一个属性,book 是复杂类型
整个的 schema 应该是
<?xml version="1.0" encoding="utf-8"?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="Books">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" name="book">
<xs:complexType>
<xs:sequence>
<xs:element name="author" type="xs:string" />
<xs:element name="price" type="xs:unsignedByte" />
</xs:sequence>
<xs:attribute name="title" type="xs:string" use="required" />
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>