根据定义:
noNamespaceSchemaLocation属性引用没有目标命名空间的XML Schema文档。
此属性如何改变解析结果?
例如,请使用此XML:
<?xml version="1.0"?>
<name
xmlns="http://www.example.com/name"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.example.com/name schema/schema.xsd"
title="Mr.">
<first>John</first>
<middle>M</middle>
<last>Doe</last>
</name>
参考这个架构:
<?xml version="1.0"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema"
xmlns:target="http://www.example.com/name"
targetNamespace="http://www.example.com/name" elementFormDefault="qualified">
<element name="name">
<complexType>
<sequence>
<element name="first" type="string"/>
<element name="middle" type="string"/>
<element name="last" type="string"/>
</sequence>
<attribute name="title" type="string"/>
</complexType>
</element>
</schema>
我从架构中删除了这些命名空间声明:
xmlns:target="http://www.example.com/name"
targetNamespace="http://www.example.com/name"
甚至没有在引用XML中使用noNamespaceSchemaLocation属性,也没有抛出任何错误。为什么我们首先需要这个属性?
答案 0 :(得分:8)
该属性对XML解析器没有影响。如果设置了适当的选项,可能会影响XML Schema Processor的行为;并且它 may 类似地影响结合XML解析和XML模式验证功能的程序的行为。它告诉模式处理器在哪里查找描述文档的模式。
但即使使用模式处理器,noNamespaceSchemaLocation
属性也不会影响像你这样的文档的验证,其中元素都在命名空间中。