我想创建一个* .xsd文档(对于一个简单的游戏;)),它具有该规范:
<description>
有混合元素,它有子元素i和b。它们与description元素具有相同的类型,因此它们可以具有相同的i和b元素。
所以我想我必须创建一个递归结构?我的问题是如何创建这样的结构?
答案 0 :(得分:1)
有一些令人困惑的陈述;当你说“description
具有混合元素时,你想要说出其他元素,例如&lt; c /&gt;和&lt; d /&gt;,或mixed
,因为它也允许文本(想想这里的HTML标记)?当您引用i和b内容时,每个内容是否只包含the same i and b Element
或上述混合元素?
要为您的案例实现递归内容模型,我建议使用类型而不是组来创建它;前者正在使用我所知道的大多数工具。这是一个简单的XSD示例,它支持文本(mixed =“true”),您可以从中开始探索:
<?xml version="1.0" encoding="utf-8"?>
<!--W3C Schema generated by QTAssistant/W3C Schema Refactoring Module (http://www.paschidev.com)-->
<xsd:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element name="description" type="descriptionType"/>
<xsd:complexType name="descriptionType" mixed="true">
<xsd:choice minOccurs="0" maxOccurs="unbounded">
<xsd:element name="b" type="descriptionType"/>
<xsd:element name="i" type="descriptionType"/>
</xsd:choice>
</xsd:complexType>
</xsd:schema>
我会同时可视化符合的XML,并开始调整:
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<!-- Sample XML generated by QTAssistant (http://www.paschidev.com) -->
<description xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">text<b>text<b>text<b>text</b>
<i>text</i>
</b>
<i>text<b>text</b>
<i>text</i>
</i>
</b>
<i>text<b>text<b>text</b>
<i>text</i>
</b>
<i>text<b>text</b>
<i>text</i>
</i>
</i>
</description>