加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

xml – 带继承的元素的XSD限制不起作用

发布时间:2020-12-16 05:34:21 所属栏目:百科 来源:网络整理
导读:我正在尝试继承并限制一个元素,但我得到了以下错误(在 eclipse验证中): The particle of the type is not a valid restriction of the particle of the base. “Description”元素不应该是“TypeDevice”元素的一部分.我无法理解为什么.这应该是可能的(根据
我正在尝试继承并限制一个元素,但我得到了以下错误(在 eclipse验证中):

The particle of the type is not a valid restriction of the particle
of the base.

“Description”元素不应该是“TypeDevice”元素的一部分.我无法理解为什么.这应该是可能的(根据这个tutorial):

谁能帮我?

映入眼帘,

法案

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.example.com" xmlns="http://www.example.com" elementFormDefault="qualified" attributeFormDefault="unqualified">
  <!--  Abstract Base Class  -->
  <xs:complexType name="AbstractDevice" abstract="true">
    <xs:sequence>
      <xs:element name="Name" type="xs:string" />
      <xs:element name="Description" type="xs:string" />
    </xs:sequence>
    <xs:attribute name="id" type="xs:string" />
  </xs:complexType>

  <!--  Inheritance with restriction  -->
  <xs:complexType name="TypeDevice">
    <xs:complexContent>
      <xs:restriction base="AbstractDevice">                                
        <xs:sequence>
          <xs:element name="Name" type="xs:string" />
        </xs:sequence>
        <xs:attribute name="id" type="xs:string" use="required" />
      </xs:restriction>                        
    </xs:complexContent>
  </xs:complexType>

  <xs:complexType name="TypeRoot">
    <xs:sequence>
      <xs:element name="Device" type="TypeDevice" />
    </xs:sequence>                
  </xs:complexType>
  <xs:element name="Configuration" type="TypeRoot" />
</xs:schema>
类型AbstractDevice有两个必需元素,而TypeDevice类型只有一个.因此,TypeDevice不是其基类型AbstractDevice的有效实例.为了使其有效,您应该将minOccurs =“0”添加到Description元素或转换派生并使用扩展.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读