如何使xml模式中的属性唯一?

前端之家收集整理的这篇文章主要介绍了如何使xml模式中的属性唯一?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想使一个元素的属性像主键一样是唯一的.怎么做呢
这样的事情应该有效:
<xs:element name="books" maxOccurs="unbounded">
   <xs:complexType>
      <xs:sequence>
         <xs:element name="book" maxOccurs="unbounded">
            <xs:complexType>
               <xs:attribute name="isbn" type="xs:string"/>
            </xs:complexType>
         </xs:element>
      </xs:sequence>
   </xs:complexType>
   <xs:unique name="unique-isbn">
      <xs:selector xpath="book"/>
      <xs:field xpath="@isbn"/>
   </xs:unique>
</xs:element>

基本上,您可以使用< xs:unique>定义“唯一性”约束.元素,并定义这个唯一性应该适用的XPath.

有关更多信息,请参阅W3Schools entry on <xs:unique>.

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

猜你在找的XML相关文章