XML 模式 - 如何将一个属性的存在与另一属性的存在绑定
我有以下 xml 行:
<customer id="3" phone="123456" city="" /> <!--OK-->
<customer id="4" /> <!--OK-->
<customer id="3" phone="123456" /> <!--ERROR-->
<customer id="3" city="" /> <!--ERROR-->
“phone”和“city”属性是可选的,但如果“phone”存在,“city”也应该存在,反之亦然。是否可以在 XML 模式中插入这样的限制?
谢谢。
I have the following xml lines:
<customer id="3" phone="123456" city="" /> <!--OK-->
<customer id="4" /> <!--OK-->
<customer id="3" phone="123456" /> <!--ERROR-->
<customer id="3" city="" /> <!--ERROR-->
"phone" and "city" attributes are optional, but if "phone" exists, also "city" should exists and vise versa. Is it possible to insert such restriction to XML schema?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
XML 中的依赖关系(您称之为“绑定”)的概念是通过嵌套进行管理的。因此,如果您希望两个字段相互依赖,则应该将它们定义为嵌套可选元素的强制属性。
因此,如果您可以完全控制架构的结构,则可以执行以下操作:
其中
contact
元素在customer
中是可选的,但city
和phone
在contact
中是必填项。该结构对应的 XSD 如下所示:
The concept of dependencies (which you are calling "binding") in XML is managed through nesting. So if you want two fields to be dependent on one another, you should define them as mandatory attributes of a nested, optional element.
So if you have full control over the schema's structure, you could do something like this:
Where the
contact
element is optional withincustomer
, butcity
andphone
are mandatory withincontact
.The corresponding XSD for that structure would be something like this: