如何使用 schemaLocation 或 noNamespaceSchemaLocation 将 XML 链接到 XSD?

问题描述 投票:0回答:1
xml xsd xsd-validation xml-validation
1个回答
19
投票

How to link an XSD to an XML document depends on the XML document is using namespaces or not...

没有命名空间

使用

xsi:noNamespaceSchemaLocation
提供有关要使用的 XSD 的提示:

  • XML

    <root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:noNamespaceSchemaLocation="example.xsd">
      <!-- ... -->
    </root>
    
  • XSD

    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
      <xsd:element name="root">
        <!-- ... -->
      </xsd:element>
    </xsd:schema>
    

With 命名空间

使用

xsi:schemaLocation
提供有关要使用的 XSD 的提示:

  • XML

    <ns:root xmlns:ns="http://example.com/ns"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://example.com/ns example-ns.xsd">
      <!-- ... -->
    </ns:root>
    
  • XSD

    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                targetNamespace="http://example.com/ns">
      <xsd:element name="root">
        <!-- ... -->
      </xsd:element>
    </xsd:schema>
    
© www.soinside.com 2019 - 2024. All rights reserved.