最新的Web開發教程
 

XML架構重新定義元素


<XML Schema參考手冊

定義和用法

該元素重新定義從外部架構重新定義簡單和複雜類型,組和屬性組。

元素信息

  • Parent elements:架構

句法

<redefine
id=ID
schemaLocation=anyURI
any attributes
>

(annotation|(simpleType|complexType|group|attributeGroup))*

</redefine>

屬性 描述
id 可選的。 指定一個唯一的ID為元素
schemaLocation 需要。 URI來架構文檔位置
any attributes 可選的。 規定帶有non-schema命名空間的任何其他屬性。

例1

下面的例子顯示了一個架構,Myschama2.xsd,由Myschama1.xsd指定的元素。 該PNAME類型被重新定義。 根據這一模式,由PNAME類型約束的元素必須以結束"country"的元素:

Myschema1.xsd:

<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">

<xs:complexType name="pname">
  <xs:sequence>
    <xs:element name="firstname"/>
    <xs:element name="lastname"/>
  </xs:sequence>
</xs:complexType>

<xs:element name="customer" type="pname"/>

</xs:schema>

Myschema2.xsd:

<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">

<xs:redefine schemaLocation="Myschema1.xsd">
  <xs:complexType name="pname">
    <xs:complexContent>
      <xs:extension base="pname">
        <xs:sequence>
          <xs:element name="country"/>
        </xs:sequence>
      </xs:extension>
    </xs:complexContent>
  </xs:complexType>
</xs:redefine>

<xs:element name="author" type="pname"/>

</xs:schema>

<XML Schema參考手冊