3

我的目标是创建一个正确引用描述结构的 XSD 文件的 XML,而这两个文件都使用命名空间(通过在xmlns属性中设置默认命名空间来创建 XML)。

我可以xsi:noNamespaceSchemaLocation在 XML 中指定属性,并且它至少在某些验证器中有效(例如http://www.validome.org/xml/validate/)。但是当我尝试添加命名空间时,验证器会返回错误(例如:找不到元素“note”的声明。)

我准备的测试文件的最终版本附在下面。我用xmllint这样的方式测试了它:

xmllint example.xml --schema example.xsd

它有效,但我在参数中指定了模式位置。我的问题是:XML 文件是否正确引用了 XSD,是否正确使用了命名空间?为什么验证器返回错误?

示例.xml:

<?xml version="1.0" encoding="UTF-8"?>
<note
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="example.xsd"
        xmlns="http://example/note"
>
        <from>Jacek</from>
        <to>Agatka</to>
        <body>Kocham cię!</body>
</note>

例子.xsd:

<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema
       xmlns:xsd="http://www.w3.org/2001/XMLSchema"
       xmlns="http://example/note"
       targetNamespace="http://example/note"
>
       <xsd:element name="note">
               <xsd:complexType>
                       <xsd:sequence>
                               <xsd:element ref="from"/>
                               <xsd:element ref="to"/>
                               <xsd:element ref="body"/>
                       </xsd:sequence>
               </xsd:complexType>
      </xsd:element>

      <xsd:element name="from" type="xsd:string"/>

      <xsd:element name="to" type="xsd:string"/>

      <xsd:element name="body" type="xsd:string"/>

</xsd:schema>
4

1 回答 1

3

schemaLocation属性还应指定命名空间:

<?xml version="1.0" encoding="utf-8"?>
<note
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://example/note example.xsd"
  xmlns="http://example/note">
  <from>Jacek</from>
  <to>Agatka</to>
  <body>Kocham cię!</body>
</note>

请参阅此处的文档。

于 2013-04-20T20:19:33.140 回答