类型化递归元素

发布于 2024-08-24 05:16:09 字数 420 浏览 3 评论 0原文

  1. 需要定义具有一些属性并且可以保存自身列表的 XSD 元素

这是类型定义:

<xs:complexType name="t_TestCase" >
  <xs:sequence>
    <xs:element type="t_TestCase" minOccurs="0"></xs:element>
  </xs:sequence>
</xs:complexType>

这是基于类型的元素:

  1. 但是 - 当向类型添加属性时 - 它似乎不再有效。 (序列标签无效)

请指教?

发射机

  1. Need to define XSD element that has some attributes and can hold list of itself

This is the type definition:

<xs:complexType name="t_TestCase" >
  <xs:sequence>
    <xs:element type="t_TestCase" minOccurs="0"></xs:element>
  </xs:sequence>
</xs:complexType>

This is the element based on the type:

  1. BUT - when adding attribute to the type - it seems that it is not valid anymore. (the sequence tag is invalid)

Advise please?

Tx

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

很酷不放纵 2024-08-31 05:16:09

使用像这样的复杂类型:

  <xs:element name="t_TestCase">
    <xs:complexType>
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="t_TestCase"/>
      </xs:sequence>
      <xs:attribute name="att1"/>
    </xs:complexType>
  </xs:element>

编辑:我的第一个答案很糟糕

Use a complex type like so:

  <xs:element name="t_TestCase">
    <xs:complexType>
      <xs:sequence>
        <xs:element minOccurs="0" maxOccurs="unbounded" ref="t_TestCase"/>
      </xs:sequence>
      <xs:attribute name="att1"/>
    </xs:complexType>
  </xs:element>

Edit: my first answer sucked

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文