我在w3schools中找到了一个例子,它展示了如何引用XML Schema。
对于以下XSD(note.xsd
)......:
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="https://www.w3schools.com"
xmlns="https://www.w3schools.com"
elementFormDefault="qualified">
<xs:element name="note">
<xs:complexType>
<xs:sequence>
<xs:element name="to" type="xs:string"/>
<xs:element name="from" type="xs:string"/>
<xs:element name="heading" type="xs:string"/>
<xs:element name="body" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
...建议使用XML实例:
<?xml version="1.0"?>
<note
xmlns="https://www.w3schools.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://www.w3schools.com/xml note.xsd">
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
请注意,XML文档中的xmlns
和xsi:schemaLocation
具有不同的名称空间URI。我知道,URI没有被解析并且没有触发网络活动,但在这种情况下定义不同的URI是否正确(即使域名相同)?
看起来不正确。这些名称空间应该匹配,否则验证器将不会绑定XML文档的名称空间(在本例中为默认名称空间,https://www.w3schools.com
)以及来自note.xsd
的模式中的适当元素声明/类型定义。
让我们根据上面的模式给出XML:
现在使用匹配的命名空间验证XML文档:
在我看来,这只是一个错字,因为相同的XML片段(但具有匹配的命名空间)在next section中表示。