我很难理解为什么我的 xml 和架构不起作用。
架构:
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.w3schools.com"
xmlns="http://www.w3schools.com"
elementFormDefault="qualified">
<xs:element name="animals">
<xs:element name="animal">
<xs:complexType>
<xs:element name="species"/>
<xs:element name="name"/>
<xs:element name="population" minOccurs="1"/>
</xs:complexType>
</xs:element>
</xs:element>
XML:
<?xml version="1.0"?>
<animals xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="animals.xsd">
<animal>
<species>reptile</species>
<name>cobra</name>
</animal>
</animals>
它不应该抛出错误,因为当 min 发生为 1 时,xml 文件中缺少人口。
我做的一切正确吗?