1

我知道xmlns定义了一个命名空间,但我对它在 XSD 文件中的使用有点困惑(这是代码合成提供的示例)。

<?xml version="1.0"?>

<!--

file      : examples/cxx/parser/library/library.xsd
copyright : not copyrighted - public domain

-->

<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
            xmlns:lib="http://www.codesynthesis.com/library"
            targetNamespace="http://www.codesynthesis.com/library">

  <xsd:simpleType name="isbn">
    <xsd:restriction base="xsd:unsignedInt"/>
  </xsd:simpleType>


  <xsd:complexType name="title">
    <xsd:simpleContent>
      <xsd:extension base="xsd:string">
        <xsd:attribute name="lang" type="xsd:string"/>
      </xsd:extension>
    </xsd:simpleContent>
  </xsd:complexType>


  <xsd:simpleType name="genre">
    <xsd:restriction base="xsd:string">
      <xsd:enumeration value="romance"/>
      <xsd:enumeration value="fiction"/>
      <xsd:enumeration value="horror"/>
      <xsd:enumeration value="history"/>
      <xsd:enumeration value="philosophy"/>
    </xsd:restriction>
  </xsd:simpleType>


  <xsd:complexType name="person">
    <xsd:sequence>
      <xsd:element name="name" type="xsd:string"/>
      <xsd:element name="born" type="xsd:string"/>
      <xsd:element name="died" type="xsd:string" minOccurs="0"/>
    </xsd:sequence>
  </xsd:complexType>


  <xsd:complexType name="author">
    <xsd:complexContent>
      <xsd:extension base="lib:person">
    <xsd:attribute name="recommends" type="xsd:IDREF"/> <!-- Book -->
      </xsd:extension>
    </xsd:complexContent>
  </xsd:complexType>


  <xsd:complexType name="book">
    <xsd:sequence>
      <xsd:element name="isbn" type="lib:isbn"/>
      <xsd:element name="title" type="lib:title"/>
      <xsd:element name="genre" type="lib:genre"/>
      <xsd:element name="author" type="lib:author" maxOccurs="unbounded"/>
    </xsd:sequence>
    <xsd:attribute name="available" type="xsd:boolean" use="required"/>
    <xsd:attribute name="id" type="xsd:ID" use="required"/>
  </xsd:complexType>


  <xsd:complexType name="catalog">
    <xsd:sequence>
      <xsd:element name="book" type="lib:book" maxOccurs="unbounded"/>
    </xsd:sequence>
  </xsd:complexType>


  <xsd:element name="catalog" type="lib:catalog"/>

</xsd:schema>

为什么定义的新类型是用命名空间前缀而不是前缀引用的person,两者都在文档中定义?是什么让它们属于但不属于?authorlibxsdlibxsd

其次,它们在定义时被独立引用,但在使用时它们具有命名空间前缀。不应该用命名空间前缀来定义它们吗?

例如,author在定义时没有 lib 前缀,但它使用lib:person了命名空间前缀(同样在author以后使用时,它属于lib!)。这增加了混乱!

  <xsd:complexType name="author">
    <xsd:complexContent>
      <xsd:extension base="lib:person">
    <xsd:attribute name="recommends" type="xsd:IDREF"/> <!-- Book -->
      </xsd:extension>
    </xsd:complexContent>
  </xsd:complexType>
4

2 回答 2

2

为什么定义的新类型是 用 lib 命名空间前缀而不是前缀引用的person,它们都在文档中定义?是什么让他们属于但不属于?authorxsdlibxsd

xsd命名空间前缀定义为

xmlns:xsd="http://www.w3.org/2001/XMLSchema"

这个命名空间是为 XML Schema 结构保留的。

lib命名空间前缀定义为

xmlns:lib="http://www.codesynthesis.com/library"

这个命名空间是用户定义的(由 Codesynthesis 控制,在这种情况下,它的组件)。

其次,它们在定义时被独立引用,但在使用时它们具有命名空间前缀。它们不应该也用命名空间前缀来定义吗?

不,对于 targetNamespace 声明,例如:

targetNamespace="http://www.codesynthesis.com/library"

一个类型的定义,例如author(这里没有命名空间前缀),

<xsd:complexType name="author">...</xsd:complexType>

自动在http://www.codesynthesis.com/library命名空间中,但必须通过相应的命名空间前缀 . 来引用type="lib:author"

于 2016-01-18T17:24:36.153 回答
1

架构标记中的 targetNamespace 属性定义了定义当前架构元素的命名空间。在您的示例中,这是“ http://www.codesynthesis.com/library ”。文档中定义的所有类型、属性和元素都属于 targetNamespace。为了获得对其中之一的引用,您需要为命名空间定义 xmlns(在您的示例中为 xmlns:lib="http://www.codesynthesis.com/library")。因此,只有当您获得对模式中定义的类型的引用时,您才必须使用定义的前缀“lib”。顺便说一句,您可以将目标名称空间定义为默认名称空间 (xmlns="http://www.codesynthesis.com/library"),并且您的目标名称空间不需要前缀。

于 2016-01-18T16:51:54.410 回答