如何在XML Schema定义中选择一个且仅一个元素

问题描述 投票:2回答:2

道歉,如果之前有人询问,但我搜索了网站......

无论如何,我一直在努力研究如何在XML Schema中强制选择一个且只有一个元素。

例如,假设你只需要选择一种苹果,橙子或香蕉元素,但你不能没有苹果,橙子或香蕉元素。

现在我试过这个:

<?xml version="1.0" encoding="utf-8" ?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
            targetNamespace="http://tempuri.org/Fruit"
            xmlns="http://tempuri.org/Fruit"
            elementFormDefault="qualified">

      <xsd:complexType mixed="true">
        <xsd:sequence>
            <xsd:choice minOccurs="0" maxOccurs="1">
              <xsd:element name="banana" type="xsd:string"/>
              <xsd:element name="apple" type="xsd:string"/>
              <xsd:element name="orange" type="xsd:string"/>
            </xsd:choice>
        </xsd:sequence>
      </xsd:complexType mixed="true">

</xsd:schema>

现在这很好,但<choice>不是唯一的,但实际上是零或只有一个。如何将基数强制为XML Schema Definition文件中的唯一一个?

xml xsd
2个回答
2
投票

通过这种方式:

<xsd:choice minOccurs="1" maxOccurs="1">

修改后的架构:我添加了Fruit - root并将xsd更改为xs

<?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="Fruit">
      <xs:complexType  mixed="true">
        <xs:sequence>
            <xs:choice minOccurs="1" maxOccurs="1">
              <xs:element name="banana" type="xs:string"/>
              <xs:element name="apple" type="xs:string"/>
              <xs:element name="orange" type="xs:string"/>
            </xs:choice>
        </xs:sequence>
      </xs:complexType>
</xs:element>
</xs:schema>

0
投票

@smas的回答是正确的。但是,如果未在xs:choice(source)中显式声明,则minOccurs和maxOccurs属性都默认为1。所以你可以摆脱xs:choice上的属性并获得你想要的行为。

© www.soinside.com 2019 - 2024. All rights reserved.