XSD唯一约束对我来说似乎不起作用。我有以下XSD:
<schema xmlns="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://beardedhen.com/form"
xmlns:tns="http://beardedhen.com/form"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified">
<xs:complexType name="OptionListType">
<xs:sequence>
<xs:element name="option" minOccurs="1" maxOccurs="unbounded">
<xs:complexType>
<xs:attribute name="label" type="xs:string" use="required"/>
<xs:attribute name="value" type="xs:string" use="required"/>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="name" type="xs:string" use="required"/>
</xs:complexType>
<xs:element name="OptionList" type="tns:OptionListType">
<xs:unique name="uniqueOptionListLabel">
<xs:selector xpath="option"/>
<xs:field xpath="@label"/>
</xs:unique>
</xs:element>
</schema>
当我在Eclipse和在线验证器中验证以下XML时,不会返回任何错误:
<OptionList xmlns="http://beardedhen.com/form"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
name="statusLevels">
<option label="Critical" value="0"/>
<option label="Warning" value="1"/>
<option label="Warning" value="1"/>
<option label="Warning" value="1"/>
<option label="Good" value="4"/>
</OptionList>
它看起来很简单,那里有我已经遵循的例子,但这让我很生气! : - )
有什么想法吗?
答案 0 :(得分:4)
在selector元素的XPath表达式中,必须使用前缀“tns”。
<xs:selector xpath="tns:option"/>
答案 1 :(得分:0)
或者可以使用xs:ID代替xs:string。另请参见xs:IDREF和xs:IDREFS。