我有 2 个嵌套的 xsd:
DefaultSchema.xsd:
<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="DefaultSchema"
targetNamespace="http://myNamespace.com/DefaultSchema.xsd"
elementFormDefault="qualified"
xmlns="http://myNamespace.com/DefaultSchema.xsd"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
>
<xs:complexType name="ZForm">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:element name="Part" minOccurs="0" maxOccurs="unbounded" type="Part"/>
</xs:sequence>
<xs:attribute name="Title" use="required" type="xs:string"/>
<xs:attribute name="Version" type="xs:int"/>
</xs:complexType>
<xs:complexType name="Part">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:element name="Label" type="Label" minOccurs="0"></xs:element>
</xs:sequence>
<xs:attribute name="Title" use="required" type="xs:string"/>
</xs:complexType>
<xs:complexType name="Label">
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="Title" type="xs:string"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:schema>
ExportSchema.xsd:(这有点在 DefaultSchema 的主要元素(ZForm)周围再包裹了 1 个元素(ZForms))
<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="ExportSchema"
targetNamespace="http://myNamespace.com/ExportSchema.xsd"
elementFormDefault="qualified"
xmlns="http://myNamespace.com/DefaultSchema.xsd"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:es="http://myNamespace.com/ExportSchema.xsd"
>
<xs:import namespace="http://myNamespace.com/DefaultSchema.xsd" schemaLocation="DefaultSchema.xsd"/>
<xs:element name="ZForms" type="es:ZFormType"></xs:element>
<xs:complexType name="ZFormType">
<xs:sequence>
<xs:element name="ZForm" type="ZForm" maxOccurs="unbounded" />
</xs:sequence>
</xs:complexType>
</xs:schema>
最后我有一个生成的 xml:
<?xml version="1.0" encoding="utf-8"?>
<ZForms xmlns="http://myNamespace.com/ExportSchema.xsd">
<ZForm Version="1" Title="FormTitle">
<Part Title="PartTitle" >
<Label Title="LabelTitle" />
</Part>
</ZForm>
</ZForms>
Visual Studio 抱怨它不知道“部分”是什么。
我希望我不需要使用 xml 命名空间前缀 (..) 来验证这个 xml,因为 ExportSchema.xsd 引用了 DefaultSCHema.xsd。
有没有办法在不明确指定 DefaultSchema.xsd 的情况下使该 xml 结构有效?或者这是不行的?