类型化递归元素
- 需要定义具有一些属性并且可以保存自身列表的 XSD 元素
这是类型定义:
<xs:complexType name="t_TestCase" >
<xs:sequence>
<xs:element type="t_TestCase" minOccurs="0"></xs:element>
</xs:sequence>
</xs:complexType>
这是基于类型的元素:
- 但是 - 当向类型添加属性时 - 它似乎不再有效。 (序列标签无效)
请指教?
发射机
- 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:
- BUT - when adding attribute to the type - it seems that it is not valid anymore. (the sequence tag is invalid)
Advise please?
Tx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用像这样的复杂类型:
编辑:我的第一个答案很糟糕
Use a complex type like so:
Edit: my first answer sucked