作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果我在 XSD 中有以下元素规范,我可以添加 <xs:unique>
作为 <xs:element name="Parent">
的 child 的约束但我不能让它作为 <xs:element name="Child">
的 child 工作:
<xs:element name="Parent">
<xs:complexType>
<xs:element name="Child" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:attribute name="Key" type="xs:string" use="required" />
</xs:complexType>
<!-- Option A: insert unique constraint here with selector . -->
</xs:element>
</xs:complexType>
<!-- Option B: insert unique constraint here with selector ./Child -->
</xs:element>
<xs:element name="Parent">
的 child 的唯一约束。 :
<xs:unique name="ChildKey">
<xs:selector xpath="./Child"/>
<xs:field xpath="@Key" />
</xs:unique>
<xs:element name="Child">
的子节点起作用。 :
<xs:unique name="ChildKey">
<xs:selector xpath="."/>
<xs:field xpath="@Key" />
</xs:unique>
最佳答案
如果你仔细想想,选择器“。”将始终返回当前节点;选择器为您提供一个仅包含一个节点的节点集...因此,在仅包含一个节点的集合中,唯一性得到保证,因为具有给定名称的属性只能出现一次。这应该可以解释为什么你不能按照你认为它应该工作的方式得到它。
当您在父级别设置它时,它会起作用,因为您现在正在一组子节点之间强制执行唯一性。
在数据库术语中,诸如您需要的约束只能在表级别定义。这就是它的样子(我稍微重写了 XSD 以获得良好的 E/R)。
XSD:
<?xml version="1.0" encoding="utf-8" ?>
<xs:schema targetNamespace="http://tempuri.org/XMLSchema.xsd" elementFormDefault="qualified" xmlns:tns="http://tempuri.org/XMLSchema.xsd" xmlns="http://tempuri.org/XMLSchema.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="Parent" type="Parent">
<xs:unique name="ParentKey">
<xs:selector xpath="tns:Child"/>
<xs:field xpath="@Key"/>
</xs:unique>
</xs:element>
<xs:complexType name="Parent">
<xs:sequence>
<xs:element name="Child" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:attribute name="Key" type="xs:string" use="required"/>
</xs:complexType>
<xs:unique name="ChildKey">
<xs:selector xpath="."/>
<xs:field xpath="@Key"/>
</xs:unique>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:schema>
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<!-- Sample XML generated by QTAssistant (http://www.paschidev.com) -->
<Parent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://tempuri.org/XMLSchema.xsd">
<Child Key="Key1"/>
<Child Key="Key1"/>
</Parent>
Error occurred while loading [], line 5 position 3
There is a duplicate key sequence 'Key1' for the 'http://tempuri.org/XMLSchema.xsd:ParentKey' key or unique identity constraint.
Unique.xml is invalid.
关于xsd - 如何使用 <xs :unique> as a child element of the <xs:element> tag? 为属性指定唯一约束,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8801645/
我是一名优秀的程序员,十分优秀!