具有不同范围的重复名称元素的 DTD(或 XSD)问题
我提取了一个用于 DTD 的 xml 片段,实际上我需要一个针对标签资源中包含的资源的特定声明,以及另一个针对标签输入中包含的资源的不同声明。问题是第一个需要 id 属性,第二个不需要 id 属性,因为使用替代属性。是否可以声明类似的内容(伪代码):
xml 片段:
<xml>
<resources>
<resource id="somedir">sometpath</resource>
</resources>
...
<input>
<resource exists="false">
<path>somepath</path>
</resource>
</input>
</xml>
可以使用 DTD 或 XSD 吗?
谢谢
I extracted a xml fragment on which I am working for a DTD, pratically I need a specific declaration for resource contained in tag resources and another different one for resource contained in tag input. The problem is that the first one requires the id attribute, the second one does not require the id attribute because uses alternative attributes. Is it possible to declare something like (pseudocoded):
The xml fragment:
<xml>
<resources>
<resource id="somedir">sometpath</resource>
</resources>
...
<input>
<resource exists="false">
<path>somepath</path>
</resource>
</input>
</xml>
Is it possible with DTD or XSD?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 DTD - 不,XSD - 是。像这样的东西:
With DTD - no, XSD - yes. Something like: