我一直在寻找,实际上没有简单的方法可以让元素成为两种可能的类型吗?我尝试了以下解决方法。
<xs:element name="food">
<xs:complexType>
<xs:choice>
<xs:element name="meat" type="meatFoods"/>
<xs:element name="veggies" type="veggieFoods"/>
</xs:choice>
</xs:complexType>
</xs:element>
food cannot have character [children], because the type's content type is element-only.
并且:
<xs:choice>
<xs:sequence>
<xs:element name="food" type="meatFoods"/>
</xs:sequnce>
<xs:sequence>
<xs:element name="food" type="veggieFoods"/>
</xs:sequence>
</xs:choice>
给出有关同名不同类型的错误
并且:
<xs:complexType name="MeatOrVeggies">
<xs:choice>
<xs:element name="meat" type="meatFoods"/>
<xs:element name="veggies" type="veggieFoods"/>
</xs:choice>
</xs:complexType>
<xs:element name="food" type="MeatOrVeggies"/>
food cannot have character [children], because the type's content type is element-only.
这些都引发某种错误。最后一个给出食物是一个元素,并且没有子级错误,第二个给出“名称为“食物”的多个元素,并且在模型组中出现不同的类型。”
此XSD是Java有效负载对象的有效负载,它具有:
FoodInterface food
。肉和蔬菜是该接口的枚举,如下所示:
public enum Meat implements FoodInterface{
Chicken,
Beef,
Pork
}
架构中的肉/蔬菜枚举
<xs:simpleType name="meatFoods">
<xs:restriction base="xs:string">
<xs:enumeration value="chicken"/>
<xs:enumeration value="beef"/>
<xs:enumeration value="pork"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="veggieFoods">
<xs:restriction base="xs:string">
<xs:enumeration value="spinach"/>
<xs:enumeration value="broccoli"/>
<xs:enumeration value="tomato"/>
</xs:restriction>
</xs:simpleType>
Thanks in advance.
答案 0 :(得分:1)
“ ... union元素将简单类型定义为来自指定简单数据类型的值的集合(联合)...” 在此处查看:https://www.w3schools.com/xml/el_union.asp
答案 1 :(得分:1)
如果类型是简单类型,请使用联合类型。
如果类型是复杂类型,则使用xs:choice:,但是生成的内容模型必须是明确的(也就是说,遇到的第一个元素必须告诉您选择哪个分支)。
由于您尚未告诉我们meatFoods和veggieFoods这两种是什么类型,因此很难在回答中更加具体。您也没有明确指出要得到什么错误。