假设我有以下XML:
<wordlist>
<language>English</language>
<author>John Smith</author>
<words>
<word id="0">Point</word>
<word id="1">Triangle</word>
<word id="2">Apple</word>
<word id="3">Plate</word>
<word id="4">Mango</word>
<word id="5">Computer</word>
</words>
</wordlist>
,并想为它创建一个XSD模式。
由于某种原因,我不能得到<word>
元素的正确定义。目前我想到的是:
<xs:element name="wordlist">
<xs:complexType>
<xs:sequence>
<xs:element name="language" type="xs:string" />
<xs:element name="author" type="xs:string" />
<xs:element name="words">
<xs:complexType>
<xs:sequence>
<xs:element name="word">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="id" type="xs:integer" use="required"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
但是当我运行
xmllint -noout -schema wordlist.xsd
我得到
dictionary.xml:11: element word: Schemas validity error : Element 'word': This element is not expected.
dictionary.xml fails to validate
第11行
<word id="1">Triangle</word>
所以看起来第一个单词像预期的那样工作,但第二个不是…
变化
<xs:element name="word">
<xs:element name="word" maxOccurs="unbounded">
,因为maxOccurs
的默认值是1,但您希望允许多个