我正在尝试根据我的 XML 架构验证我的 XML 文件,但是对于我的 XML 文件中的每个项目,我收到以下两个错误:
cvc-complex-type.2.3:元素 'price' 不能有字符 [children],因为该类型的内容类型是仅元素。
cvc-complex-type.2.4.b:元素“价格”的内容不完整。需要 '{"":one_and_half_litre}' 之一。
这是 XML 文件的示例:
<soft_drinks>
<drink>
<name>Coca Cola</name>
<price>â¬1.60</price>
</drink>
<drink>
<name>Coca Cola Zero</name>
<price>â¬1.60</price>
</drink>
<drink>
<name>Coca Cola Diet</name>
<price>â¬1.60</price>
</drink>
<drink>
<name>Sprite</name>
<price>â¬1.60</price>
</drink>
<drink>
<name>Sprite Zero</name>
<price>â¬1.60</price>
</drink>
<drink>
<name>Fanta Orange</name>
<price>â¬1.60</price>
</drink>
<drink>
<name>Fanta Lemon</name>
<price>â¬1.60</price>
</drink>
</soft_drinks>
以下是 XML Schema 的一部分:
<xs:element name="soft_drinks">
<xs:complexType>
<xs:sequence>
<xs:element name="drink" maxOccurs="unbounded" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="name" type="xs:string"/>
<xs:element name="price">
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
谢谢,如果你能帮忙!!:)