如何确保XML模式中的唯一元素值?

前端之家收集整理的这篇文章主要介绍了如何确保XML模式中的唯一元素值?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想确保以下xml中没有重复的书名:
<?xml version="1.0" encoding="UTF-8"?>
<books xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:noNamespaceSchemaLocation="books3.xsd">
    <book>
        <title>Book1</title>
    </book>
    <book>
        <title>Book2</title>
    </book>
    <book>
        <title>Book1</title>  <!-- duplicate should not be allowed -->
    </book> 
</books>

我使用以下模式:

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
  <xs:element name="books">
    <xs:complexType>
      <xs:sequence>
        <xs:element maxOccurs="unbounded" ref="book"/>
      </xs:sequence>
    </xs:complexType>
    <xs:unique name="testUnique">
      <xs:selector xpath="book"/>
      <xs:field xpath="title"/>
    </xs:unique>
  </xs:element>
  <xs:element name="book">
    <xs:complexType>
      <xs:sequence>
        <xs:element ref="title"/>
      </xs:sequence>
    </xs:complexType>
  </xs:element>
  <xs:element name="title" type="xs:NCName"/>
</xs:schema>

oXygen XML编辑器告诉我,这是有效的,当我验证。

有人可以看到我做错了什么吗?

该模式似乎可以,应该检测重复。氧可能是臭虫吗?

您可以尝试此网站来验证您的xml:http://www.xmlvalidation.com

你会看到它在你的xmldocument中发现错误

@H_301_19@

Duplicate unique value [Book1] declared for identity constraint of element “books”

原文链接:https://www.f2er.com/xml/293298.html

猜你在找的XML相关文章