4

使用命名空间时引用模式的正确语法是什么?

问题

使用给定模式创建 XML 文档。

错误


    .xml:9.20: Element '{http://example/buildings/1.0}old_buildings': No matching global declaration available for the validation root.
    oldbuildings.xml - invalid
    Problem

XML 文档

<?xml version="1.0" encoding="UTF-8"?>

<buildings:old_buildings xmlns:buildings="http://example/buildings/1.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://example/buildings/1.0 oldbuildings_schema.xsd">
    <building>
        <name>Name</name>
        <year_built era="BC">2000</year_built>
        <story>...<story>
    </building>
</buildings:old_buildings>

XSD 文件

    <?xml 版本="1.0" 编码="UTF-8"?>

    <xs:schema targetNamespace="http://example/buildings/1.0/" 
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="http://example/buildings/1.0/ "> <xs:element name="old_buildings"> <xs:complexType> <xs:序列> <xs:element ref="建筑"/> </xs:sequence> </xs:complexType> </xs:元素> <xs:element name="building" type="buildingType"></xs:element> <xs:complexType name="buildingType"> <xs:序列> <xs:element name="name" type="xs:string"/> <xs:element name="year_built" type="yearType"/> <xs:element name="story" type="xs:string"/> </xs:sequence> </xs:complexType> <xs:complexType name="yearType"> <xs:简单内容> <xs:extension base="xs:positiveInteger"> <xs:attribute name="era" type="xs:string"/> </xs:extension> </xs:simpleContent> </xs:complexType> </xs:schema>
4

2 回答 2

6

在您的 xml 文件中,尝试使用

xmlns:buildings="http://example/buildings/1.0/"

使用 / final,如您的 xsd 声明中所示:xs:schema targetNamespace="http://example/buildings/1.0/"

于 2013-03-02T20:54:34.397 回答
1

来自 xml 文档缺少结束标记

 <story>...<story>

<story>...</story>
于 2022-02-20T16:28:23.097 回答