我有一个具有这种格式的 XML 文档:
<?xml version="1.0" encoding="utf-8"?>
<books-feed xmlns="{NS-URL}">
<generation-date>{DATE}</generation-date>
<book id="{BOOK-ID}">
<title>{BOOK-TITLE}</title>
<author>{BOOK-AUTHOR}</author>
.......................................... ← other information tags [any]
</book>
.............................................. ← other <book> elements
</books-feed>
我正在尝试使用此 XSD 模式验证此文件:
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element name="books-feed">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="generation-date" type="xsd:string"/>
<xsd:element name="book" maxOccurs="unbounded">
<xsd:complexType>
<xsd:sequence>
<xsd:any maxOccurs="unbounded" processContents="lax"/>
</xsd:sequence>
<xsd:attribute name="id" type="xsd:integer" use="required"/>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>
所以 DOMDocument::schemaValidate() 返回 FALSE。命名空间中是否存在此问题(books-feed xmlns="{NS-URL}" 不等于架构 xmlns)?或者我需要将 xmlns book-feed 的 xsd:attribute 插入模式(这将导致“无效模式”警告)。或者是什么?