XSD 任何元素任意顺序任意次数
我已尝试了所有
这些都不能令人满意地帮助我的案子。
有谁知道如何验证这样的事情。
<Menu>
<SubMenu>
<MenuItem .. />
<MenuItem .. />
<MenuItem .. />
</SubMenu>
<MenuItem .. >
<MenuItem .. >
</Menu>
在哪里, 在
忽略 SubMenu 标记内的验证。
将不胜感激在此事上的任何帮助。
I have tried all the <xs:all>, <xs:choice>, and <xs:sequence>
Neither of these helps my case satisfactorily.
Does anybody know how would you validate something like this.
<Menu>
<SubMenu>
<MenuItem .. />
<MenuItem .. />
<MenuItem .. />
</SubMenu>
<MenuItem .. >
<MenuItem .. >
</Menu>
Where,
Under the <Menu>
tag<SubMenu>
and/or <MenuItem>
can occur any number of times(0-n) in any order.
But atleast one of them must occur atleast once.
Ignoring validations inside SubMenu tags.
Would appreciate any help in this matter.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我正确理解了您的要求,那么您可以将该模型表述为“SubMenu 或 MenuItem 之一,后跟零个或多个 SubMenu 或 MenuItem 元素”。这可以很容易地表达为两个选择的序列:
您可以使用 Menu 和 SubMenu 的共享全局类型更清晰地对此进行建模,但我希望这种方式相对明显。
If I've understood your requirement correctly then you could phrase the model as "one of SubMenu or MenuItem followed by zero or more SubMenu or MenuItem elements". That can be expressed quite easily as a sequence of two choices:
You could model this more cleanly using a shared global type for Menu and SubMenu but this way is relatively obvious I hope.